CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/metasploit/framework/rails_version_constraint.rb
Views: 1904
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.0.0'
7
end
8
end
9
end
10
11