simple_oauth 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c50ae9a3795998aadd96790e68574680bec0bc5d848ad2fd139327e4123b2872
4
- data.tar.gz: 6c8d45ae40b2f52846d0c83ce9e4b7d4f1fb53caa0f516734c81abcb5ecc7f3a
3
+ metadata.gz: 73fa4671190dbbe2dc7178055d4ef82aeaabf7044b384d198ee12a0fa48f6de5
4
+ data.tar.gz: f550391eb54731d6593dcab35f19bc419cbcbe63a6e48036be5f3cf4a419d069
5
5
  SHA512:
6
- metadata.gz: c9d3a63ea92cd30dec03017175fd3be9611b484a20f79a7810229885f9f4697b81eeccdce3dd399f25d1e9f6ea316ca09dee0440d961be869f71a3f6a120d02c
7
- data.tar.gz: 2a511446baa6096738e47e93b57eaedf6e53840e570c8664dee0227303ecade3237336e475292108403c791728bac88ab847b17d33ccc5535c2c1fb5c12a2a7a
6
+ metadata.gz: 58f2b94d0568c491e46450e0c5cd35a9e45bed5827ee854fe17e02f4d02d74c3f5dd300eeebbfc890964afb72000a6e0f3b6db38db6599f063d3385b9dbe54c3
7
+ data.tar.gz: be077693f5d1c95b30f748f1915376862b540c419558dc6376d39c99c5991e1380f172c79e37a396f9e1450af6f22e48cec1c843b2c3afce3488731ba69401fe
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.4.1] - 2026-04-20
2
+
3
+ ### Fixed
4
+
5
+ * Remove `URI::RFC2396_PARSER` stub from RBS signatures to avoid duplicate declaration error with RBS 4.0.2, which now ships the constant in its stdlib `uri` signatures
6
+
1
7
  ## [0.4.0] - 2026-02-01
2
8
 
3
9
  ### Added
data/Rakefile CHANGED
@@ -1,16 +1,21 @@
1
1
  require "bundler/gem_tasks"
2
- require "rake/testtask"
3
- require "rubocop/rake_task"
4
- require "standard/rake"
2
+ # Override release task to skip gem push (handled by GitHub Actions with attestations)
3
+ Rake::Task["release"].clear
4
+ desc "Build gem and create tag (gem push handled by CI)"
5
+ task release: %w[build release:guard_clean release:source_control_push]
5
6
 
7
+ require "rake/testtask"
6
8
  Rake::TestTask.new(:test) do |t|
7
9
  t.libs << "test"
8
10
  t.libs << "lib"
9
11
  t.test_files = FileList["test/**/*_test.rb"]
10
12
  end
11
13
 
14
+ require "rubocop/rake_task"
12
15
  RuboCop::RakeTask.new
13
16
 
17
+ require "standard/rake"
18
+
14
19
  desc "Run mutation tests"
15
20
  task :mutant do
16
21
  system("bundle", "exec", "mutant", "run") || exit(1)
@@ -1,5 +1,5 @@
1
1
  # OAuth 1.0 header generation library
2
2
  module SimpleOauth
3
3
  # The current version of the SimpleOAuth gem
4
- VERSION = "0.4.0".freeze
4
+ VERSION = "0.4.1".freeze
5
5
  end
@@ -1,8 +1,5 @@
1
- # Stubs for URI module
1
+ # Extensions to the URI module
2
2
  module URI
3
- # The RFC2396 parser instance constant
4
- RFC2396_PARSER: RFC2396_Parser
5
-
6
3
  class Generic
7
4
  # Returns the URI as a String (implicit conversion)
8
5
  def to_str: () -> String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_oauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Richert
@@ -70,7 +70,7 @@ files:
70
70
  - sig/simple_oauth/parser.rbs
71
71
  - sig/simple_oauth/signature.rbs
72
72
  - sig/strscan.rbs
73
- - sig/uri_rfc2396_parser.rbs
73
+ - sig/uri_ext.rbs
74
74
  homepage: https://github.com/laserlemon/simple_oauth
75
75
  licenses:
76
76
  - MIT
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  requirements: []
97
- rubygems_version: 4.0.5
97
+ rubygems_version: 4.0.10
98
98
  specification_version: 4
99
99
  summary: Simply builds and verifies OAuth headers
100
100
  test_files: []