mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
89666001da
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.
27 lines
462 B
Ruby
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
|