Skip to content

Commit

Permalink
Merge pull request #48 from tagliala/updates
Browse files Browse the repository at this point in the history
Minor updates
  • Loading branch information
tagliala committed Sep 8, 2023
2 parents ef58089 + f404fa5 commit fee5b69
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 23 deletions.
17 changes: 11 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
version: 2
updates:
- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
time: "04:00"
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
time: "04:00"
- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
time: "04:00"
open-pull-requests-limit: 10
6 changes: 2 additions & 4 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', 'jruby-9.3', 'jruby-9.4']
channel: ['stable']

include:
- ruby-version: 'head'
channel: 'experimental'
- ruby-version: 'jruby-9.3'
channel: 'experimental'
- ruby-version: 'jruby-9.4'
- ruby-version: 'jruby-head'
channel: 'experimental'

continue-on-error: ${{ matrix.channel != 'stable' }}
Expand Down
26 changes: 13 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ source 'https://rubygems.org'
gemspec

platforms :jruby do
gem 'jruby-openssl', '~> 0.14.2'
gem 'jruby-openssl'
end

gem 'bundler', '~> 2.0'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.12'
gem 'rubocop', '~> 1.50'
gem 'rubocop-packaging', '~> 0.5.2'
gem 'rubocop-performance', '~> 1.17'
gem 'rubocop-rake', '~> 0.6.0'
gem 'rubocop-rspec', '~> 2.20'
gem 'simplecov-lcov', '~> 0.8.0'
gem 'truthy', '~> 1.0'
gem 'vcr', '~> 6.1'
gem 'webmock', '~> 3.18'
gem 'bundler'
gem 'rake'
gem 'rspec'
gem 'rubocop'
gem 'rubocop-packaging'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'rubocop-rspec'
gem 'simplecov-lcov'
gem 'truthy'
gem 'vcr'
gem 'webmock'

0 comments on commit fee5b69

Please sign in to comment.