Sha256: 178e02f0a3f3b7a6e10003defb3991631e01596e9469b2e23691852a3ffeb408
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/funk_hands/version', __FILE__) Gem::Specification.new do |gem| gem.name = 'funk_hands' gem.version = FunkHands::VERSION gem.author = 'Gopal Patel' gem.email = 'nixme@stillhope.com' gem.license = 'MIT' gem.homepage = 'https://github.com/Jack12816/funk_hands' 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! funk_hands 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'] gem.required_ruby_version = '>= 2.5' # Dependencies gem.add_runtime_dependency 'pry', '>= 0.14.0' gem.add_runtime_dependency 'pry-rails', '>= 0.3.6' gem.add_runtime_dependency 'pry-remote-reloaded', '~> 1.1' gem.add_runtime_dependency 'pry-byebug-reloaded', '~> 3.10' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
funk_hands-2.0.1 | funk_hands.gemspec |
funk_hands-2.0.0 | funk_hands.gemspec |