diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 86f04c0..e622782 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/.rubocop.yml b/.rubocop.yml index e0214c5..311abb8 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -3,7 +3,7 @@ require: - rubocop-rspec AllCops: - TargetRubyVersion: 3.0 + TargetRubyVersion: 3.1 NewCops: enable Layout/LineLength: diff --git a/CHANGELOG.md b/CHANGELOG.md index 715c100..3175d57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index 2799289..6f55191 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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 @@ -19,22 +20,22 @@ 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) @@ -42,14 +43,14 @@ GEM 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) @@ -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) diff --git a/capybara_mock.gemspec b/capybara_mock.gemspec index 3a4b333..b89effd 100644 --- a/capybara_mock.gemspec +++ b/capybara_mock.gemspec @@ -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' diff --git a/lib/capybara_mock.rb b/lib/capybara_mock.rb index d0bc72b..2509126 100644 --- a/lib/capybara_mock.rb +++ b/lib/capybara_mock.rb @@ -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. diff --git a/lib/capybara_mock/version.rb b/lib/capybara_mock/version.rb index 8bddf34..ded340d 100644 --- a/lib/capybara_mock/version.rb +++ b/lib/capybara_mock/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CapybaraMock - VERSION = '0.1.0' + VERSION = '0.2.0' end diff --git a/spec/capybara_mock/stub_spec.rb b/spec/capybara_mock/stub_spec.rb index 49ba40c..6268ad8 100644 --- a/spec/capybara_mock/stub_spec.rb +++ b/spec/capybara_mock/stub_spec.rb @@ -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 @@ -63,9 +63,9 @@ { method: 'GET', url: 'http://example.com', - query: query, - headers: headers, - body: body + query:, + headers:, + body: } end