forked from nixme/pry-nav
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpry-moves.gemspec
29 lines (25 loc) · 1.22 KB
/
pry-moves.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
27
28
29
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/pry-moves/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'pry-moves'
gem.version = PryMoves::VERSION
gem.author = 'garmoshka-mo'
gem.email = '[email protected]'
gem.license = 'MIT'
gem.homepage = 'https://github.com/garmoshka-mo/pry-moves'
gem.summary = 'Debugger for ruby'
gem.description = "Advanced debugger for ruby with natural `next` across blocks, debug of dynamic calls, stepping into function by name, etc.."
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ["lib"]
# Dependencies
gem.required_ruby_version = '>= 1.8.7', '< 3'
gem.add_runtime_dependency 'pry', '>= 0.10.4', '< 0.13'
# gem.add_runtime_dependency 'pry-coolline', '~> 0.2.5'
gem.add_runtime_dependency 'binding_of_caller', '~> 0.7'
gem.add_runtime_dependency 'colorize', '~> 0.8'
gem.add_runtime_dependency 'awesome_print', '>= 1.8.0'
gem.add_runtime_dependency 'diffy', '~> 3.4.0'
gem.add_development_dependency 'pry-remote', '~> 0.1.6'
end