Skip to content
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
8 changes: 4 additions & 4 deletions .rubocop_gradual.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"lib/oauth/tokens/consumer_token.rb:3696415131": [
[9, 5, 155, "Style/ClassMethodsDefinitions: Use `class << self` to define a class method.", 349576019]
],
"oauth.gemspec:1684970822": [
[120, 3, 40, "Gemspec/DependencyVersion: Dependency version specification is required.", 2300588954],
[122, 3, 44, "Gemspec/DependencyVersion: Dependency version specification is required.", 1905290578],
[123, 3, 46, "Gemspec/DependencyVersion: Dependency version specification is required.", 4289565910]
"oauth.gemspec:2280471191": [
[123, 3, 40, "Gemspec/DependencyVersion: Dependency version specification is required.", 2300588954],
[125, 3, 44, "Gemspec/DependencyVersion: Dependency version specification is required.", 1905290578],
[126, 3, 46, "Gemspec/DependencyVersion: Dependency version specification is required.", 4289565910]
],
"spec/oauth/backwards_compatibility_spec.rb:4041711732": [
[3, 16, 25, "RSpec/DescribeClass: The first argument to describe should be the class or module being tested.", 3956042931]
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Please file a bug if you notice a violation of semantic versioning.

### Added

- base64 dependency, fixes Ruby 3.4 and 3.5 HEAD compatibility

### Changed

### Deprecated
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ PATH
remote: .
specs:
oauth (1.1.2)
base64 (~> 0.1)
oauth-tty (~> 1.0, >= 1.0.6)
snaky_hash (~> 2.0)
version_gem (~> 1.1, >= 1.1.9)
Expand Down
3 changes: 3 additions & 0 deletions oauth.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ Gem::Specification.new do |spec|
spec.add_dependency("oauth-tty", "~> 1.0", ">= 1.0.6")
spec.add_dependency("snaky_hash", "~> 2.0")

# Standard Library Extracted Gems
spec.add_dependency("base64", "~> 0.1") # became a bundled gem in ruby 3.4 (was default from 3.0 to 3.3)

# Utilities
spec.add_dependency("version_gem", "~> 1.1", ">= 1.1.9") # ruby >= 2.2.0

Expand Down
Loading