diff --git a/.github/workflows/build_rails.yml b/.github/workflows/build_rails.yml index cbb3ac12..69575af3 100644 --- a/.github/workflows/build_rails.yml +++ b/.github/workflows/build_rails.yml @@ -13,8 +13,10 @@ jobs: fail-fast: false matrix: ruby: ["3.3", "3.2", "3.1"] - version: ["70", "71"] - + version: ["70", "71", "72", "80"] + exclude: + - ruby: 3.1 + version: 80 runs-on: "ubuntu-latest" steps: diff --git a/superglue_rails/Gemfile.72 b/superglue_rails/Gemfile.72 new file mode 100644 index 00000000..1291856d --- /dev/null +++ b/superglue_rails/Gemfile.72 @@ -0,0 +1,11 @@ +source 'https://rubygems.org' +gemspec + +gem 'rails', '~> 7.2.0' +gem 'selenium-webdriver' +gem 'props_template' +gem 'standard' +gem 'capybara' +gem 'minitest' +gem 'rake' +gem 'sqlite3', '~> 1.4' diff --git a/superglue_rails/Gemfile.80 b/superglue_rails/Gemfile.80 new file mode 100644 index 00000000..0445fa79 --- /dev/null +++ b/superglue_rails/Gemfile.80 @@ -0,0 +1,11 @@ +source 'https://rubygems.org' +gemspec + +gem 'rails', '~> 8.0.0' +gem 'selenium-webdriver' +gem 'props_template' +gem 'standard' +gem 'capybara' +gem 'minitest' +gem 'rake' +gem 'sqlite3'