Skip to content

Commit 52da944

Browse files
committed
βž• base64
- fixes #342
1 parent fe2df2e commit 52da944

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

β€Ž.rubocop_gradual.lockβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"lib/oauth/tokens/consumer_token.rb:3696415131": [
3535
[9, 5, 155, "Style/ClassMethodsDefinitions: Use `class << self` to define a class method.", 349576019]
3636
],
37-
"oauth.gemspec:1684970822": [
38-
[120, 3, 40, "Gemspec/DependencyVersion: Dependency version specification is required.", 2300588954],
39-
[122, 3, 44, "Gemspec/DependencyVersion: Dependency version specification is required.", 1905290578],
40-
[123, 3, 46, "Gemspec/DependencyVersion: Dependency version specification is required.", 4289565910]
37+
"oauth.gemspec:2280471191": [
38+
[123, 3, 40, "Gemspec/DependencyVersion: Dependency version specification is required.", 2300588954],
39+
[125, 3, 44, "Gemspec/DependencyVersion: Dependency version specification is required.", 1905290578],
40+
[126, 3, 46, "Gemspec/DependencyVersion: Dependency version specification is required.", 4289565910]
4141
],
4242
"spec/oauth/backwards_compatibility_spec.rb:4041711732": [
4343
[3, 16, 25, "RSpec/DescribeClass: The first argument to describe should be the class or module being tested.", 3956042931]

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Please file a bug if you notice a violation of semantic versioning.
2020

2121
### Added
2222

23+
- base64 dependency, fixes Ruby 3.4 and 3.5 HEAD compatibility
24+
2325
### Changed
2426

2527
### Deprecated

β€ŽGemfile.lockβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ PATH
1414
remote: .
1515
specs:
1616
oauth (1.1.2)
17+
base64 (~> 0.1)
1718
oauth-tty (~> 1.0, >= 1.0.6)
1819
snaky_hash (~> 2.0)
1920
version_gem (~> 1.1, >= 1.1.9)

β€Žoauth.gemspecβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ Gem::Specification.new do |spec|
101101
spec.add_dependency("oauth-tty", "~> 1.0", ">= 1.0.6")
102102
spec.add_dependency("snaky_hash", "~> 2.0")
103103

104+
# Standard Library Extracted Gems
105+
spec.add_dependency("base64", "~> 0.1") # became a bundled gem in ruby 3.4 (was default from 3.0 to 3.3)
106+
104107
# Utilities
105108
spec.add_dependency("version_gem", "~> 1.1", ">= 1.1.9") # ruby >= 2.2.0
106109

0 commit comments

Comments
Β (0)