CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/metasploit/framework/rails_version_constraint.rb
Views: 11777
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