forked from deivid-rodriguez/pry-byebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpry-byebug.gemspec
26 lines (21 loc) · 866 Bytes
/
pry-byebug.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true
require File.dirname(__FILE__) + "/lib/pry-byebug/version"
Gem::Specification.new do |gem|
gem.name = "pry-byebug"
gem.version = PryByebug::VERSION
gem.authors = ["David Rodríguez", "Gopal Patel"]
gem.email = "[email protected]"
gem.license = "MIT"
gem.homepage = "https://github.com/deivid-rodriguez/pry-byebug"
gem.summary = "Fast debugging with Pry."
gem.description = "Combine 'pry' with 'byebug'. Adds 'step', 'next', 'finish',
'continue' and 'break' commands to control execution."
gem.files = Dir["lib/**/*.rb", "LICENSE"]
gem.extra_rdoc_files = %w[CHANGELOG.md README.md]
gem.require_path = "lib"
gem.executables = []
# Dependencies
gem.required_ruby_version = ">= 2.4.0"
gem.add_runtime_dependency "byebug", "~> 11.0"
gem.add_runtime_dependency "pry", ">= 0.13", "< 0.15"
end