put pry in gemfile

include pry in the development group of the framework
gemfile
This commit is contained in:
David Maloney 2014-06-18 11:47:36 -05:00
parent fd0e24cdb2
commit 641559ec12
No known key found for this signature in database
GPG Key ID: DEDBA9DC3A913DB2
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@ source 'https://rubygems.org'
# Add default group gems to `metasploit-framework.gemspec`:
# spec.add_runtime_dependency '<name>', [<version requirements>]
gemspec
gem 'pry'
group :db do
# Needed for Msf::DbManager
gem 'activerecord', '>= 3.0.0', '< 4.0.0'
@ -19,6 +19,8 @@ group :development do
gem 'redcarpet'
# generating documentation
gem 'yard'
# for development and testing purposes
gem 'pry'
end
group :development, :test do