Skip to content

Commit

Permalink
Merge pull request #9 from mdh/test/latest-versions
Browse files Browse the repository at this point in the history
Remove tests for EOL versions of Ruby and Rails
  • Loading branch information
p8 authored Mar 13, 2024
2 parents 1715df9 + 8e20cc7 commit 18972cb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 20 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,18 @@ jobs:
fail-fast: false
matrix:
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
- "2.7"
- "2.6"
- "2.5"
rails:
- "5.2"
- "6.0"
- "6.1"
- "7.0"
- "7.1"
- main
exclude:
- ruby: 2.5
rails: main
- ruby: 2.6
rails: main
- ruby: 3.0
rails: "5.1"
- ruby: 3.0
rails: "5.2"
rails: main

runs-on: 'ubuntu-latest'

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# A sample Gemfile
source "http://rubygems.org"
source "https://rubygems.org"

gemspec

group :test do
gem "rspec", "~> 3.0"
gem "activerecord", ">= 5.2.0"
gem "activerecord", ">= 5.2.8.1"
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
end
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ source "http://rubygems.org"

group :test do
gem "rspec"
gem "activerecord", "~>5.2.0"
gem "activerecord", "~>7.0.0"
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
end
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ source "http://rubygems.org"

group :test do
gem "rspec"
gem "activerecord", "~>6.0.0"
gem "activerecord", "~>7.1.0"
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
end
4 changes: 2 additions & 2 deletions simple_state_machine.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "simple_state_machine/version"
$:.push File.expand_path("../lib", __FILE__)
require "simple_state_machine/version"

Gem::Specification.new do |s|
s.name = %q{simple_state_machine}
Expand Down

0 comments on commit 18972cb

Please sign in to comment.