Skip to content

Commit

Permalink
Merge pull request #51 from n-rodriguez/wip/ruby_head
Browse files Browse the repository at this point in the history
Fix error: base64 is not part of the default gems starting from Ruby 3.4.0
  • Loading branch information
bensie authored Aug 28, 2024
2 parents 6698a4e + a0c8ef2 commit d4507dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: CI

on:
push:
branches: [main]
branches:
- '**'
pull_request:
branches: [main]
branches:
- '**'

permissions:
contents: read
Expand All @@ -15,9 +17,9 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3", jruby-9.3, jruby-9.4]
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "head", jruby-9.3, jruby-9.4]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
Expand Down
2 changes: 2 additions & 0 deletions sshkey.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Gem::Specification.new do |s|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_dependency("base64")

s.add_development_dependency("rake")
s.add_development_dependency("test-unit")
end

0 comments on commit d4507dd

Please sign in to comment.