2014-12-19 11:37:23 -06:00
|
|
|
# Records the Bundler-style dependency constraint for the version of Rails to be
|
|
|
|
|
# used with the Metasploit Framework and Metasploit Pro.
|
|
|
|
|
module Metasploit
|
|
|
|
|
module Framework
|
|
|
|
|
module RailsVersionConstraint
|
2014-12-19 13:54:13 -06:00
|
|
|
|
2015-05-13 09:37:32 -05:00
|
|
|
# The Metasploit ecosystem is not yet ready for Rails 4.1:
|
2016-04-15 11:45:43 -05:00
|
|
|
RAILS_VERSION = '~> 4.2.6'
|
2014-12-19 11:37:23 -06:00
|
|
|
end
|
|
|
|
|
end
|
2015-05-13 09:37:32 -05:00
|
|
|
end
|