Fix indendation on Gemfile

bug/bundler_fix
Tab Assassin 2013-11-26 10:48:50 -06:00 committed by Tod Beardsley
parent f1c5ab95bf
commit c7d4cd9be2
No known key found for this signature in database
GPG Key ID: 1EFFB682ADB9F193
1 changed files with 33 additions and 33 deletions

66
Gemfile
View File

@ -14,50 +14,50 @@ gem 'robots'
gem 'packetfu', '1.1.9' gem 'packetfu', '1.1.9'
group :db do group :db do
# Needed for Msf::DbManager # Needed for Msf::DbManager
gem 'activerecord' gem 'activerecord'
# Database models shared between framework and Pro. # Database models shared between framework and Pro.
gem 'metasploit_data_models', '~> 0.16.6' gem 'metasploit_data_models', '~> 0.16.6'
# Needed for module caching in Mdm::ModuleDetails # Needed for module caching in Mdm::ModuleDetails
gem 'pg', '>= 0.11' gem 'pg', '>= 0.11'
end end
group :pcap do group :pcap do
gem 'network_interface', '~> 0.0.1' gem 'network_interface', '~> 0.0.1'
# For sniffer and raw socket modules # For sniffer and raw socket modules
gem 'pcaprub' gem 'pcaprub'
end end
group :development do group :development do
# Markdown formatting for yard # Markdown formatting for yard
gem 'redcarpet' gem 'redcarpet'
# generating documentation # generating documentation
gem 'yard' gem 'yard'
end end
group :development, :test do group :development, :test do
# supplies factories for producing model instance for specs # supplies factories for producing model instance for specs
# Version 4.1.0 or newer is needed to support generate calls without the # Version 4.1.0 or newer is needed to support generate calls without the
# 'FactoryGirl.' in factory definitions syntax. # 'FactoryGirl.' in factory definitions syntax.
gem 'factory_girl', '>= 4.1.0' gem 'factory_girl', '>= 4.1.0'
# Make rspec output shorter and more useful # Make rspec output shorter and more useful
gem 'fivemat', '1.2.1' gem 'fivemat', '1.2.1'
# running documentation generation tasks and rspec tasks # running documentation generation tasks and rspec tasks
gem 'rake', '>= 10.0.0' gem 'rake', '>= 10.0.0'
end end
group :test do group :test do
# Removes records from database created during tests. Can't use rspec-rails' # Removes records from database created during tests. Can't use rspec-rails'
# transactional fixtures because multiple connections are in use so # transactional fixtures because multiple connections are in use so
# transactions won't work. # transactions won't work.
gem 'database_cleaner' gem 'database_cleaner'
# testing framework # testing framework
gem 'rspec', '>= 2.12' gem 'rspec', '>= 2.12'
gem 'shoulda-matchers' gem 'shoulda-matchers'
# code coverage for tests # code coverage for tests
# any version newer than 0.5.4 gives an Encoding error when trying to read the source files. # any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
# see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0) # see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0)
gem 'simplecov', '0.5.4', :require => false gem 'simplecov', '0.5.4', :require => false
# Manipulate Time.now in specs # Manipulate Time.now in specs
gem 'timecop' gem 'timecop'
end end