Skip to content

Commit 6455862

Browse files
committed
Merge branch 'staging/rails-4.0' of github.com:rapid7/metasploit-framework into staging/rails-4.0
Conflicts: Gemfile.lock metasploit-framework.gemspec
2 parents 1a2a78b + 2fb4877 commit 6455862

File tree

36 files changed

+636
-591
lines changed

36 files changed

+636
-591
lines changed

Gemfile

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,25 @@ source 'https://rubygems.org'
33
# spec.add_runtime_dependency '<name>', [<version requirements>]
44
gemspec name: 'metasploit-framework'
55

6+
# TODO: Rails 4
7+
# move these back into the root gemspec
8+
gem 'metasploit-concern', :github => 'rapid7/metasploit-concern', :branch => 'staging/rails-4.0'
9+
gem 'metasploit-model', :github => 'rapid7/metasploit-model', :branch => 'staging/rails-4.0'
10+
611
# separate from test as simplecov is not run on travis-ci
712
group :coverage do
813
# code coverage for tests
914
# any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
1015
# see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0)
11-
gem 'simplecov', '0.5.4', :require => false
16+
gem 'simplecov'
1217
end
1318

1419
group :db do
1520
gemspec name: 'metasploit-framework-db'
21+
# TODO: Rails 4
22+
# move these back into the metasploit-framework-db gemspec
23+
gem 'metasploit-credential', :github => 'rapid7/metasploit-credential', :branch => 'staging/rails-4.0'
24+
gem 'metasploit_data_models', :github => 'rapid7/metasploit_data_models', :branch => 'staging/rails-4.0'
1625
end
1726

1827
group :development do
@@ -25,12 +34,8 @@ group :development do
2534
end
2635

2736
group :development, :test do
28-
# supplies factories for producing model instance for specs
29-
# Version 4.1.0 or newer is needed to support generate calls without the
30-
# 'FactoryGirl.' in factory definitions syntax.
31-
gem 'factory_girl', '>= 4.1.0'
3237
# automatically include factories from spec/factories
33-
gem 'factory_girl_rails'
38+
gem 'factory_girl_rails', '~> 4.5.0'
3439
# Make rspec output shorter and more useful
3540
gem 'fivemat', '1.2.1'
3641
# running documentation generation tasks and rspec tasks

0 commit comments

Comments
 (0)