2014-12-19 17:37:23 +00: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 19:54:13 +00:00
|
|
|
|
2015-05-13 14:37:32 +00:00
|
|
|
# The Metasploit ecosystem is not yet ready for Rails 4.1:
|
2016-03-09 21:35:00 +00:00
|
|
|
RAILS_VERSION = [ '>= 4.1.0', '< 4.2.0' ]
|
2014-12-19 17:37:23 +00:00
|
|
|
end
|
|
|
|
end
|
2015-05-13 14:37:32 +00:00
|
|
|
end
|