Files
metasploit-gs/lib/metasploit/framework/rails_version_constraint.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
261 B
Ruby
Raw Normal View History

# 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
2023-10-06 14:08:57 +01:00
RAILS_VERSION = '~> 7.0.0'
end
end
2015-05-13 09:37:32 -05:00
end