Files
metasploit-gs/lib/metasploit/framework/rails_version_constraint.rb
T
Jeffrey Martin 047a1eba07 Rails 6.1 upgrade
2021-08-09 12:16:08 -05:00

10 lines
259 B
Ruby

# 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
RAILS_VERSION = '~> 6.0'
end
end
end