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 1c6a145ba7 remove attempt at bond support from pry and move to pry-bond project.
https://github.com/johnny5-/pry-bond project adds the enable-bond! and disable-bond! commands,
as well as other features, that enhance the pry&bond experience and make it easier to use and
setup without a manual effort.

see #1165
closes #1160
2014-03-17 09:37:23 +01:00

26 lines
448 B
Ruby

source 'https://rubygems.org'
gemspec
gem 'rake', '~> 10.0'
# 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