Skip to content

Commit

Permalink
test: Drop support support ruby 2.5.1 for bionic
Browse files Browse the repository at this point in the history
  • Loading branch information
iberianpig committed Jul 14, 2024
1 parent c019103 commit f67499c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ruby
name: RSpec

on:
push:
Expand All @@ -14,7 +14,11 @@ jobs:
strategy:
matrix:
ruby:
- '3.0.2'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions fusuma-plugin-wmctrl.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.5.1" # https://packages.ubuntu.com/search?keywords=ruby&searchon=names&exact=1&suite=all&section=main
# support bionic (18.04LTS) 2.5.1
spec.required_ruby_version = ">= 2.7"
# https://packages.ubuntu.com/search?keywords=ruby&searchon=names&exact=1&suite=all&section=main
# support focal (20.04LTS) 2.7
spec.add_dependency "fusuma", ">= 3.1"
end

0 comments on commit f67499c

Please sign in to comment.