Merge remote-tracking branch 'upstream/staging/electro-release' into staging/electro-release
commit
2818b4e2f2
|
@ -2,6 +2,7 @@ PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
metasploit-framework (4.10.0.pre.dev)
|
metasploit-framework (4.10.0.pre.dev)
|
||||||
|
actionpack (< 4.0.0)
|
||||||
activesupport (>= 3.0.0, < 4.0.0)
|
activesupport (>= 3.0.0, < 4.0.0)
|
||||||
bcrypt
|
bcrypt
|
||||||
json
|
json
|
||||||
|
|
|
@ -14,6 +14,13 @@ Bundler.require(
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
#
|
||||||
|
# Railties
|
||||||
|
#
|
||||||
|
|
||||||
|
# For compatibility with jquery-rails (and other engines that need action_view) in pro
|
||||||
|
require 'action_view/railtie'
|
||||||
|
|
||||||
#
|
#
|
||||||
# Project
|
# Project
|
||||||
#
|
#
|
||||||
|
|
|
@ -10,6 +10,7 @@ require 'fileutils'
|
||||||
# Project
|
# Project
|
||||||
#
|
#
|
||||||
|
|
||||||
|
require 'metasploit/framework/version'
|
||||||
require 'rex/compat'
|
require 'rex/compat'
|
||||||
|
|
||||||
module Msf
|
module Msf
|
||||||
|
|
|
@ -51,6 +51,8 @@ Gem::Specification.new do |spec|
|
||||||
|
|
||||||
# Need 3+ for ActiveSupport::Concern
|
# Need 3+ for ActiveSupport::Concern
|
||||||
spec.add_runtime_dependency 'activesupport', '>= 3.0.0', rails_version_constraint
|
spec.add_runtime_dependency 'activesupport', '>= 3.0.0', rails_version_constraint
|
||||||
|
# Needed for config.action_view for view plugin compatibility for Pro
|
||||||
|
spec.add_runtime_dependency 'actionpack', rails_version_constraint
|
||||||
# Needed for some admin modules (cfme_manageiq_evm_pass_reset.rb)
|
# Needed for some admin modules (cfme_manageiq_evm_pass_reset.rb)
|
||||||
spec.add_runtime_dependency 'bcrypt'
|
spec.add_runtime_dependency 'bcrypt'
|
||||||
# Needed for some admin modules (scrutinizer_add_user.rb)
|
# Needed for some admin modules (scrutinizer_add_user.rb)
|
||||||
|
|
Loading…
Reference in New Issue