Skip to content
Snippets Groups Projects
Commit c10a6a56 authored by elijah's avatar elijah
Browse files

make ruby version optional in Gemfile

parent 31421652
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# defaults that may be modified in Gemfile.conf # defaults that may be modified in Gemfile.conf
$source = "https://rubygems.org" $source = "https://rubygems.org"
$ruby_version = "3.1.1" $ruby_version = nil
$javascript = true $javascript = true
$gemfile_first = File.expand_path('../Gemfile.first', __FILE__) $gemfile_first = File.expand_path('../Gemfile.first', __FILE__)
$gemfile_last = File.expand_path('../Gemfile.last', __FILE__) $gemfile_last = File.expand_path('../Gemfile.last', __FILE__)
...@@ -17,7 +17,7 @@ if File.exist?($gemfile_first) ...@@ -17,7 +17,7 @@ if File.exist?($gemfile_first)
end end
source $source source $source
ruby $ruby_version ruby $ruby_version if $ruby_version
## ##
## DEFAULT CORE RAILS ## DEFAULT CORE RAILS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment