Skip to content

Commit

Permalink
Merge pull request #6 from petergoldstein/feature/add_ruby_3_2_to_ci
Browse files Browse the repository at this point in the history
Add Ruby 3.2 to the CI matrix.
  • Loading branch information
petergoldstein committed Dec 27, 2022
2 parents 62b7dc2 + 2720bf3 commit eba292e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- ruby: "3.0"
gemfile: gemfiles/Gemfile.rails6.0
include:
- ruby: ruby-head
- ruby: "3.2"
gemfile: gemfiles/Gemfile.rails7.0
- ruby: "2.7"
gemfile: gemfiles/Gemfile.rails6.0
Expand Down
2 changes: 1 addition & 1 deletion spec/support/rails_app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_app(name = 'idp', env = {})
env['RUBY_SAML_VERSION'] = OneLogin::RubySaml::VERSION
Dir.chdir(working_directory) do
FileUtils.rm_rf(name)
puts("[#{working_directory}] rails _#{Rails.version}_ new #{name} "\
puts("[#{working_directory}] rails _#{Rails.version}_ new #{name} " \
"#{rails_new_options.join(' ')} -m #{File.expand_path("../#{name}_template.rb", __FILE__)}")
system(env, 'rails', "_#{Rails.version}_", 'new', name, *rails_new_options, '-m',
File.expand_path("../#{name}_template.rb", __FILE__))
Expand Down

0 comments on commit eba292e

Please sign in to comment.