Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Ruby 3.0 support #17

Merged
merged 5 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ jobs:
strategy:
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'

- '3.4'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1
NewCops: enable

Layout/LineLength:
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## [Unreleased]
## [0.2.0] - 2025-03-06

- Drop ruby 2.7 support
- Drop Ruby 3.0 support

## [0.1.0] - 2022-12-09

Expand Down
34 changes: 18 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
PATH
remote: .
specs:
capybara_mock (0.1.0)
capybara_mock (0.2.0)
rack (>= 2.2.0)

GEM
remote: https://rubygems.org/
specs:
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
ast (2.4.2)
base64 (0.2.0)
capybara (3.40.0)
addressable
matrix
Expand All @@ -19,37 +20,37 @@ GEM
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
concurrent-ruby (1.2.3)
cuprite (0.15)
concurrent-ruby (1.3.5)
cuprite (0.15.1)
capybara (~> 3.0)
ferrum (~> 0.14.0)
ferrum (~> 0.15.0)
diff-lcs (1.5.1)
ferrum (0.14)
ferrum (0.15)
addressable (~> 2.5)
concurrent-ruby (~> 1.1)
webrick (~> 1.7)
websocket-driver (>= 0.6, < 0.8)
websocket-driver (~> 0.7)
json (2.7.1)
language_server-protocol (3.17.0.3)
matrix (0.4.2)
mini_mime (1.1.5)
mini_portile2 (2.8.6)
nokogiri (1.16.5)
mini_portile2 (2.8.8)
nokogiri (1.18.3)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
parallel (1.24.0)
parser (3.3.0.5)
ast (~> 2.4.1)
racc
prism (0.24.0)
public_suffix (5.0.4)
racc (1.7.3)
public_suffix (6.0.1)
racc (1.8.1)
rack (2.2.12)
rack-test (2.1.0)
rack-test (2.2.0)
rack (>= 1.3)
rainbow (3.1.1)
rake (13.1.0)
regexp_parser (2.9.0)
regexp_parser (2.10.0)
rexml (3.3.9)
rspec (3.13.0)
rspec-core (~> 3.13.0)
Expand Down Expand Up @@ -90,8 +91,9 @@ GEM
rubocop-factory_bot (~> 2.22)
ruby-progressbar (1.13.0)
unicode-display_width (2.5.0)
webrick (1.8.2)
websocket-driver (0.7.6)
webrick (1.9.1)
websocket-driver (0.7.7)
base64
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
xpath (3.2.0)
Expand Down
2 changes: 1 addition & 1 deletion capybara_mock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = 'CapybaraMock'
spec.homepage = 'https://github.com/railsware/capybara_mock'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0.0'
spec.required_ruby_version = '>= 3.1.0'

spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/railsware/capybara_mock'
Expand Down
4 changes: 2 additions & 2 deletions lib/capybara_mock.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ class << self
# @param method [String]
# @param path [String]
# @return [CapybaraMock::Stub]
def stub_path(method, path, &block)
def stub_path(method, path, &)
url = File.join(capybara_session.server.base_url, path)
stub_request(method, url, &block)
stub_request(method, url, &)
end

# Stub capybara request for current session using url.
Expand Down
2 changes: 1 addition & 1 deletion lib/capybara_mock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module CapybaraMock
VERSION = '0.1.0'
VERSION = '0.2.0'
end
12 changes: 6 additions & 6 deletions spec/capybara_mock/stub_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
context 'with `.with`' do
subject(:stub) do
described_class.new(:get, 'http://example.com').with(
query: query,
headers: headers,
body: body
query:,
headers:,
body:
)
end

Expand All @@ -63,9 +63,9 @@
{
method: 'GET',
url: 'http://example.com',
query: query,
headers: headers,
body: body
query:,
headers:,
body:
}
end

Expand Down