Sha256: 82e5d47b4631f817bf7f977b7e36fd45e99ebc4bfe947c4ff489e46162835603
Contents?: true
Size: 1.35 KB
Versions: 2
Compression:
Stored size: 1.35 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/debbie/version', __FILE__) Gem::Specification.new do |gem| gem.name = 'debbie' gem.version = Debbie::VERSION gem.author = 'Gopal Patel' gem.email = 'nixme@stillhope.com' gem.license = 'MIT' gem.homepage = 'https://github.com/goodpeople/debbie' gem.summary = 'Exercise those fingers. Pry-based enhancements for the default Rails console.' gem.description = "Spending hours in the rails console? Spruce it up and show off those hard-working hands! Debbie replaces IRB with Pry, improves output through awesome_print, and has some other goodies up its sleeves." 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 = '~> 2.0' gem.add_runtime_dependency "pry", "~> 0.10" gem.add_runtime_dependency "pry-doc", "~> 0.6" gem.add_runtime_dependency 'pry-rails', '~> 0.3' gem.add_runtime_dependency 'pry-byebug' gem.add_runtime_dependency 'hirb', '~> 0.7' gem.add_runtime_dependency 'coolline', '>= 0.4.2' gem.add_runtime_dependency 'awesome_print', '~> 1.2' gem.add_runtime_dependency 'railties', '>= 3.0', '< 5.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
debbie-1.0.2 | debbie.gemspec |
debbie-1.0.1 | debbie.gemspec |