Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/metasploit/framework/rails_version_constraint.rb
21545 views
1
# Records the Bundler-style dependency constraint for the version of Rails to be
2
# used with the Metasploit Framework and Metasploit Pro.
3
module Metasploit
4
module Framework
5
module RailsVersionConstraint
6
RAILS_VERSION = '~> 7.2.0'
7
end
8
end
9
end
10
11