Skip to content

Commit 7066992

Browse files
committed
🔧 Update appraisals
1 parent 9561907 commit 7066992

20 files changed

+80
-19
lines changed

Appraisals

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# - Broken workflow indicates that a new contributor will have a bad time
2121
#
2222
appraise "unlocked_deps" do
23+
gem "oauth", ">= 1.1.0"
2324
eval_gemfile "modular/coverage.gemfile"
2425
eval_gemfile "modular/documentation.gemfile"
2526
eval_gemfile "modular/style.gemfile"
@@ -30,71 +31,90 @@ end
3031
# Used for head (nightly) releases of ruby, truffleruby, and jruby.
3132
# Split into discrete appraisals if one of them needs a dependency locked discretely.
3233
appraise "head" do
34+
gem "oauth", ">= 1.1.0"
3335
gem "benchmark", "~> 0.4", ">= 0.4.1"
3436
eval_gemfile "modular/x_std_libs.gemfile"
3537
end
3638

3739
# Used for current releases of ruby, truffleruby, and jruby.
3840
# Split into discrete appraisals if one of them needs a dependency locked discretely.
3941
appraise "current" do
42+
gem "oauth", ">= 1.1.0"
4043
eval_gemfile "modular/x_std_libs.gemfile"
4144
end
4245

4346
# Test current Rubies against head versions of runtime dependencies
4447
appraise "dep-heads" do
48+
gem "oauth", github: "ruby-oauth/oauth", branch: "main"
4549
eval_gemfile "modular/runtime_heads.gemfile"
4650
end
4751

4852
appraise "ruby-2-3" do
53+
gem "oauth", github: "ruby-oauth/oauth", branch: "main"
54+
# gem "oauth", ">= 1.1.0"
4955
eval_gemfile "modular/x_std_libs/r2.3/libs.gemfile"
5056
end
5157

5258
appraise "ruby-2-4" do
59+
gem "oauth", github: "ruby-oauth/oauth", branch: "main"
60+
# gem "oauth", ">= 1.1.0"
5361
eval_gemfile "modular/x_std_libs/r2.4/libs.gemfile"
5462
end
5563

5664
appraise "ruby-2-5" do
65+
gem "oauth", github: "ruby-oauth/oauth", branch: "main"
66+
# gem "oauth", ">= 1.1.0"
5767
eval_gemfile "modular/x_std_libs/r2.6/libs.gemfile"
5868
end
5969

6070
appraise "ruby-2-6" do
71+
gem "oauth", github: "ruby-oauth/oauth", branch: "main"
72+
# gem "oauth", ">= 1.1.0"
6173
eval_gemfile "modular/x_std_libs/r2.6/libs.gemfile"
6274
end
6375

6476
appraise "ruby-2-7" do
77+
gem "oauth", ">= 1.1.0"
6578
eval_gemfile "modular/x_std_libs/r2/libs.gemfile"
6679
end
6780

6881
appraise "ruby-3-0" do
82+
gem "oauth", ">= 1.1.0"
6983
eval_gemfile "modular/x_std_libs/r3.1/libs.gemfile"
7084
end
7185

7286
appraise "ruby-3-1" do
87+
gem "oauth", ">= 1.1.0"
7388
eval_gemfile "modular/x_std_libs/r3.1/libs.gemfile"
7489
end
7590

7691
appraise "ruby-3-2" do
92+
gem "oauth", ">= 1.1.0"
7793
eval_gemfile "modular/x_std_libs/r3/libs.gemfile"
7894
end
7995

8096
appraise "ruby-3-3" do
97+
gem "oauth", ">= 1.1.0"
8198
eval_gemfile "modular/x_std_libs/r3/libs.gemfile"
8299
end
83100

84101
# Only run security audit on the latest version of Ruby
85102
appraise "audit" do
103+
gem "oauth", ">= 1.1.0"
86104
eval_gemfile "modular/x_std_libs.gemfile"
87105
end
88106

89107
# Only run coverage on the latest version of Ruby
90108
appraise "coverage" do
109+
gem "oauth", ">= 1.1.0"
91110
eval_gemfile "modular/coverage.gemfile"
92111
eval_gemfile "modular/optional.gemfile"
93112
eval_gemfile "modular/x_std_libs.gemfile"
94113
end
95114

96115
# Only run linter on the latest version of Ruby (but, in support of oldest supported Ruby version)
97116
appraise "style" do
117+
gem "oauth", ">= 1.1.0"
98118
eval_gemfile "modular/style.gemfile"
99119
eval_gemfile "modular/x_std_libs.gemfile"
100120
end

CHANGELOG.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,16 @@ Please file a bug if you notice a violation of semantic versioning.
1818

1919
## [Unreleased]
2020
### Added
21+
- (dev) kettle-dev v1.1.16
2122
- More documentation (@Aboling0, @pboling)
2223
- Deployed documentation site for HEAD (@Aboling0)
2324
- https://oauth-tty.galtzo.com
2425
### Changed
2526
- Upgrade Code of Conduct to Contributor Covenant 2.1 (@pboling)
27+
- migrated test suite to RSpec
2628
### Deprecated
2729
### Removed
30+
- minitest
2831
### Fixed
2932
### Security
3033

@@ -67,16 +70,16 @@ Please file a bug if you notice a violation of semantic versioning.
6770
### Added
6871
- Initial release (@pboling)
6972

70-
[Unreleased]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.5...main
71-
[1.0.5]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.4...v1.0.5
72-
[1.0.5t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.5
73-
[1.0.4]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.3...v1.0.4
74-
[1.0.4t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.4
75-
[1.0.3]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.2...v1.0.3
76-
[1.0.3t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.3
77-
[1.0.2]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.1...v1.0.2
78-
[1.0.2t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.2
79-
[1.0.1]: https://gitlab.com/oauth-xx/oauth-tty/-/compare/v1.0.0...v1.0.1
80-
[1.0.1t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.1
81-
[1.0.0]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.0
82-
[1.0.0t]: https://gitlab.com/oauth-xx/oauth-tty/-/releases/tag/v1.0.0
73+
[Unreleased]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.5...main
74+
[1.0.5]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.4...v1.0.5
75+
[1.0.5t]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.5
76+
[1.0.4]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.3...v1.0.4
77+
[1.0.4t]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.4
78+
[1.0.3]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.2...v1.0.3
79+
[1.0.3t]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.3
80+
[1.0.2]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.1...v1.0.2
81+
[1.0.2t]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.2
82+
[1.0.1]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.0...v1.0.1
83+
[1.0.1t]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.1
84+
[1.0.0]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.0
85+
[1.0.0t]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.0

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ git_source(:gitlab) { |repo_name| "https://gitlab.com/#{repo_name}" }
1212
# Include dependencies from <gem name>.gemspec
1313
gemspec
1414

15-
gem "oauth", ">= 1.1.0"
15+
# gem "oauth", ">= 1.1.0"
16+
gem "oauth", github: "ruby-oauth/oauth", branch: "main"
1617

1718
# Debugging
1819
eval_gemfile "gemfiles/modular/debug.gemfile"

Gemfile.lock

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ GIT
1010
rainbow
1111
yard
1212

13+
GIT
14+
remote: https://github.com/ruby-oauth/oauth
15+
revision: 66b90d72d8157b58e16961748cfdf1c7aef31d22
16+
branch: main
17+
specs:
18+
oauth (1.1.1)
19+
oauth-tty (~> 1.0, >= 1.0.1)
20+
snaky_hash (~> 2.0)
21+
version_gem (~> 1.1)
22+
1323
PATH
1424
remote: .
1525
specs:
@@ -165,10 +175,6 @@ GEM
165175
racc (~> 1.4)
166176
nokogiri (1.18.9-x86_64-linux-musl)
167177
racc (~> 1.4)
168-
oauth (1.1.0)
169-
oauth-tty (~> 1.0, >= 1.0.1)
170-
snaky_hash (~> 2.0)
171-
version_gem (~> 1.1)
172178
ostruct (0.6.3)
173179
parallel (1.27.0)
174180
parser (3.3.9.0)
@@ -391,7 +397,7 @@ DEPENDENCIES
391397
kramdown-parser-gfm (~> 1.1)
392398
mocha
393399
mutex_m (~> 0.2)
394-
oauth (>= 1.1.0)
400+
oauth!
395401
oauth-tty!
396402
rack (~> 2.0)
397403
rack-test

gemfiles/audit.gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
source "https://rubygems.org"
44

5+
gem "oauth", ">= 1.1.0"
6+
57
gemspec path: "../"
68

79
eval_gemfile("modular/x_std_libs.gemfile")

gemfiles/coverage.gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
source "https://rubygems.org"
44

5+
gem "oauth", ">= 1.1.0"
6+
57
gemspec path: "../"
68

79
eval_gemfile("modular/coverage.gemfile")

gemfiles/current.gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
source "https://rubygems.org"
44

5+
gem "oauth", ">= 1.1.0"
6+
57
gemspec path: "../"
68

79
eval_gemfile("modular/x_std_libs.gemfile")

gemfiles/dep_heads.gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
source "https://rubygems.org"
44

5+
gem "oauth", branch: "main", git: "https://github.com/ruby-oauth/oauth"
6+
57
gemspec path: "../"
68

79
eval_gemfile("modular/runtime_heads.gemfile")

gemfiles/head.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
source "https://rubygems.org"
44

5+
gem "oauth", ">= 1.1.0"
56
gem "benchmark", "~> 0.4", ">= 0.4.1"
67

78
gemspec path: "../"

gemfiles/ruby_2_3.gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
source "https://rubygems.org"
44

5+
gem "oauth", branch: "main", git: "https://github.com/ruby-oauth/oauth"
6+
57
gemspec path: "../"
68

79
eval_gemfile("modular/x_std_libs/r2.3/libs.gemfile")

0 commit comments

Comments
 (0)