mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
1c6a145ba7
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
26 lines
448 B
Ruby
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
|