Skip to content

Commit

Permalink
Merge pull request #91 from gjtorikian/update-rubies
Browse files Browse the repository at this point in the history
Support Ruby 3.4
  • Loading branch information
gjtorikian authored Dec 29, 2024
2 parents 11ebb19 + ec4914f commit b471f8d
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 83 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/cruby-build-and-install.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: CI
name: Test

on:
pull_request:

jobs:
test:
ci:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Test

on:
workflow_dispatch:
pull_request:
paths:
- "lib/selma/version.rb"

jobs:
build:
uses: yettoapp/actions/.github/workflows/ruby_rust_test_build.yml@main
secrets:
gh_token: ${{ secrets.GITHUB_TOKEN }}
with:
include_musl: false
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.4.1
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/selma/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Selma
VERSION = "0.4.10"
VERSION = "0.4.11"
end
3 changes: 1 addition & 2 deletions selma.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ Gem::Specification.new do |spec|
spec.license = "MIT"

spec.required_ruby_version = "~> 3.1"
# https://github.com/rubygems/rubygems/pull/5852#issuecomment-1231118509
spec.required_rubygems_version = ">= 3.3.22"
spec.required_rubygems_version = "~> 3.4"

spec.files = ["LICENSE.txt", "README.md", "Cargo.lock", "Cargo.toml"]
spec.files += Dir.glob("lib/**/*.rb")
Expand Down

0 comments on commit b471f8d

Please sign in to comment.