1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/Gemfile
Robert Gleeson 89666001da support deprecated method for HEAD support with pry-doc.
closes #1152.
related to #1136 but `? File.exists?` is still not showing me documentation.
thanks to @yui-knk for finding the bug & providing a solution.
2014-03-23 14:16:08 +01:00

27 lines
462 B
Ruby

source 'https://rubygems.org'
gemspec
gem 'rake', '~> 10.0'
gem 'pry-doc'
# For Guard
group :development do
gem 'jist'
gem 'yard'
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
end
group :test do
gem 'bacon', '~> 1.2'
gem 'mocha', '~> 1.0', require: "mocha/api"
end
group :development, :test do
gem 'simplecov', '~> 0.8'
end
platform :rbx do
gem 'rubysl-singleton'
gem 'rubysl-prettyprint'
gem 'rb-readline'
end