-
Notifications
You must be signed in to change notification settings - Fork 32
/
pry-nav.gemspec
23 lines (19 loc) · 917 Bytes
/
pry-nav.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/pry-nav/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'pry-nav'
gem.version = PryNav::VERSION
gem.author = 'Gopal Patel'
gem.email = '[email protected]'
gem.license = 'MIT'
gem.homepage = 'https://github.com/nixme/pry-nav'
gem.summary = 'Simple execution navigation for Pry.'
gem.description = "Turn Pry into a primitive debugger. Adds 'step' and 'next' commands to control execution."
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']
gem.required_ruby_version = '>= 2.1.0'
gem.add_runtime_dependency 'pry', '>= 0.9.10', '< 0.15'
gem.add_development_dependency 'rake'
end