Skip to content

Commit

Permalink
Drop some rubies and upgrade some gems
Browse files Browse the repository at this point in the history
  • Loading branch information
dgutov committed Mar 26, 2024
1 parent 43a85c2 commit 44098af
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- 'Gemfile.lock'
branches:
- master
- gh_workflows
- drop_compat

pull_request:
paths:
Expand All @@ -36,11 +36,9 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [1.9.3, 2.1, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1]
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
experimental: [false]
include:
- ruby: '2.0'
experimental: true
- ruby: jruby-head
experimental: true
- ruby: truffleruby-head
Expand Down
15 changes: 7 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
source "https://rubygems.org"
source 'https://rubygems.org'

gem "rspec", "~> 3.4.0"
gem "rake", "~> 10.3.0"
gem "pry", "~> 0.11.0"
gem "pry-doc", "~> 0.9.0", require: false, platforms: :mri
gem "method_source", ">= 0.8.2"
gem 'rspec', '~> 3.4.0'
gem 'rake', '~> 13.1'
gem 'pry', '~> 0.11.0'
gem 'pry-doc', '~> 0.9.0', require: false, platforms: :mri
gem 'method_source', '>= 0.8.2'
gem 'activesupport', '~> 4.1.11'
gem 'yard', '~> 0.9.11'
gem 'minitest', '~> 5.11.3' # Because we still like Ruby 1.9.3

group :metrics do
gem "simplecov", require: false
gem 'simplecov', require: false
end
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GEM
coderay (1.1.3)
concurrent-ruby (1.1.6)
diff-lcs (1.3)
ffi (1.12.2-java)
ffi (1.15.5-java)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
json (1.8.6)
Expand All @@ -28,7 +28,7 @@ GEM
pry-doc (0.9.0)
pry (~> 0.9)
yard (~> 0.8)
rake (10.3.0)
rake (13.1.0)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
Expand Down Expand Up @@ -64,10 +64,10 @@ DEPENDENCIES
minitest (~> 5.11.3)
pry (~> 0.11.0)
pry-doc (~> 0.9.0)
rake (~> 10.3.0)
rake (~> 13.1)
rspec (~> 3.4.0)
simplecov
yard (~> 0.9.11)

BUNDLED WITH
1.17.3
2.3.27
1 change: 1 addition & 0 deletions spec/robe/jvisor_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'spec_helper'
require 'robe/jvisor'
require 'set'

describe Robe::JVisor do
subject { Robe::JVisor.new }
Expand Down

0 comments on commit 44098af

Please sign in to comment.