@@ -14,50 +14,50 @@ gem 'robots'
14
14
gem 'packetfu' , '1.1.9'
15
15
16
16
group :db do
17
- # Needed for Msf::DbManager
18
- gem 'activerecord'
19
- # Database models shared between framework and Pro.
20
- gem 'metasploit_data_models' , '~> 0.16.6'
21
- # Needed for module caching in Mdm::ModuleDetails
22
- gem 'pg' , '>= 0.11'
17
+ # Needed for Msf::DbManager
18
+ gem 'activerecord'
19
+ # Database models shared between framework and Pro.
20
+ gem 'metasploit_data_models' , '~> 0.16.6'
21
+ # Needed for module caching in Mdm::ModuleDetails
22
+ gem 'pg' , '>= 0.11'
23
23
end
24
24
25
25
group :pcap do
26
26
gem 'network_interface' , '~> 0.0.1'
27
- # For sniffer and raw socket modules
28
- gem 'pcaprub'
27
+ # For sniffer and raw socket modules
28
+ gem 'pcaprub'
29
29
end
30
30
31
31
group :development do
32
- # Markdown formatting for yard
33
- gem 'redcarpet'
34
- # generating documentation
35
- gem 'yard'
32
+ # Markdown formatting for yard
33
+ gem 'redcarpet'
34
+ # generating documentation
35
+ gem 'yard'
36
36
end
37
37
38
38
group :development , :test do
39
- # supplies factories for producing model instance for specs
40
- # Version 4.1.0 or newer is needed to support generate calls without the
41
- # 'FactoryGirl.' in factory definitions syntax.
42
- gem 'factory_girl' , '>= 4.1.0'
43
- # Make rspec output shorter and more useful
44
- gem 'fivemat' , '1.2.1'
45
- # running documentation generation tasks and rspec tasks
46
- gem 'rake' , '>= 10.0.0'
39
+ # supplies factories for producing model instance for specs
40
+ # Version 4.1.0 or newer is needed to support generate calls without the
41
+ # 'FactoryGirl.' in factory definitions syntax.
42
+ gem 'factory_girl' , '>= 4.1.0'
43
+ # Make rspec output shorter and more useful
44
+ gem 'fivemat' , '1.2.1'
45
+ # running documentation generation tasks and rspec tasks
46
+ gem 'rake' , '>= 10.0.0'
47
47
end
48
48
49
49
group :test do
50
- # Removes records from database created during tests. Can't use rspec-rails'
51
- # transactional fixtures because multiple connections are in use so
52
- # transactions won't work.
53
- gem 'database_cleaner'
54
- # testing framework
55
- gem 'rspec' , '>= 2.12'
56
- gem 'shoulda-matchers'
57
- # code coverage for tests
58
- # any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
59
- # see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0)
60
- gem 'simplecov' , '0.5.4' , :require => false
61
- # Manipulate Time.now in specs
62
- gem 'timecop'
50
+ # Removes records from database created during tests. Can't use rspec-rails'
51
+ # transactional fixtures because multiple connections are in use so
52
+ # transactions won't work.
53
+ gem 'database_cleaner'
54
+ # testing framework
55
+ gem 'rspec' , '>= 2.12'
56
+ gem 'shoulda-matchers'
57
+ # code coverage for tests
58
+ # any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
59
+ # see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0)
60
+ gem 'simplecov' , '0.5.4' , :require => false
61
+ # Manipulate Time.now in specs
62
+ gem 'timecop'
63
63
end
0 commit comments