simple_twitter 2.2.2 → 2.2.3
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 +4 -4
- data/.github/dependabot.yml +2 -0
- data/.github/workflows/pages.yml +4 -4
- data/.github/workflows/release_gem.yml +41 -0
- data/.github/workflows/test.yml +5 -5
- data/CHANGELOG.md +8 -2
- data/Gemfile +4 -0
- data/lib/simple_twitter/version.rb +1 -1
- data/rbs_collection.lock.yaml +62 -8
- metadata +4 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57cec5257602dc5ee5cc35a46f7ac893cf0edca185086614f2c16864dda7a3f7
|
|
4
|
+
data.tar.gz: '09b25d37bf00b366a3d13eaabd25550a9a01823378a03573aa22de03b337c2b2'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f4a9a65933b6e19a3dcd695973b829019c1e408b3756c925a74e89e0d399c4285a7de51326a2d727abf7c4826805cd3a5df55803e5b273a92148db27505fe89
|
|
7
|
+
data.tar.gz: bf59173a82a86f306d3ea4553af50c116dba8465209d371a53f3dd3c263f83a2fee47debb1136d0d6c80c3d3c04b14714bcb8d8c86c07d66e1bc334d3c948d52
|
data/.github/dependabot.yml
CHANGED
data/.github/workflows/pages.yml
CHANGED
|
@@ -30,7 +30,7 @@ jobs:
|
|
|
30
30
|
runs-on: ubuntu-latest
|
|
31
31
|
steps:
|
|
32
32
|
- name: Checkout
|
|
33
|
-
uses: actions/checkout@
|
|
33
|
+
uses: actions/checkout@v5
|
|
34
34
|
|
|
35
35
|
- uses: ruby/setup-ruby@v1
|
|
36
36
|
with:
|
|
@@ -40,12 +40,12 @@ jobs:
|
|
|
40
40
|
- run: bundle exec yard
|
|
41
41
|
|
|
42
42
|
- name: Setup Pages
|
|
43
|
-
uses: actions/configure-pages@
|
|
43
|
+
uses: actions/configure-pages@v5
|
|
44
44
|
- name: Upload artifact
|
|
45
|
-
uses: actions/upload-pages-artifact@
|
|
45
|
+
uses: actions/upload-pages-artifact@v4
|
|
46
46
|
with:
|
|
47
47
|
# Upload entire repository
|
|
48
48
|
path: './doc'
|
|
49
49
|
- name: Deploy to GitHub Pages
|
|
50
50
|
id: deployment
|
|
51
|
-
uses: actions/deploy-pages@
|
|
51
|
+
uses: actions/deploy-pages@v4
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
if: github.repository == 'yhara/simple_twitter'
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
environment:
|
|
12
|
+
name: rubygems.org
|
|
13
|
+
url: https://rubygems.org/gems/simple_twitter
|
|
14
|
+
|
|
15
|
+
permissions:
|
|
16
|
+
contents: write
|
|
17
|
+
id-token: write
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Harden Runner
|
|
21
|
+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
|
|
22
|
+
with:
|
|
23
|
+
egress-policy: audit
|
|
24
|
+
|
|
25
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
26
|
+
|
|
27
|
+
- name: Set up Ruby
|
|
28
|
+
uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
|
|
29
|
+
with:
|
|
30
|
+
bundler-cache: true
|
|
31
|
+
ruby-version: ruby
|
|
32
|
+
|
|
33
|
+
- name: Publish to RubyGems
|
|
34
|
+
uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
|
|
35
|
+
|
|
36
|
+
- name: Create GitHub release
|
|
37
|
+
run: |
|
|
38
|
+
tag_name="$(git describe --tags --abbrev=0)"
|
|
39
|
+
gh release create "${tag_name}" --verify-tag --generate-notes
|
|
40
|
+
env:
|
|
41
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -9,8 +9,6 @@ on:
|
|
|
9
9
|
- opened
|
|
10
10
|
- synchronize
|
|
11
11
|
- reopened
|
|
12
|
-
schedule:
|
|
13
|
-
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
|
14
12
|
|
|
15
13
|
jobs:
|
|
16
14
|
test:
|
|
@@ -29,9 +27,11 @@ jobs:
|
|
|
29
27
|
- "3.0"
|
|
30
28
|
- "3.1"
|
|
31
29
|
- "3.2"
|
|
30
|
+
- "3.3"
|
|
31
|
+
- "3.4"
|
|
32
32
|
|
|
33
33
|
steps:
|
|
34
|
-
- uses: actions/checkout@
|
|
34
|
+
- uses: actions/checkout@v5
|
|
35
35
|
|
|
36
36
|
- uses: ruby/setup-ruby@v1
|
|
37
37
|
with:
|
|
@@ -51,7 +51,7 @@ jobs:
|
|
|
51
51
|
runs-on: ubuntu-latest
|
|
52
52
|
|
|
53
53
|
steps:
|
|
54
|
-
- uses: actions/checkout@
|
|
54
|
+
- uses: actions/checkout@v5
|
|
55
55
|
|
|
56
56
|
- uses: ruby/setup-ruby@v1
|
|
57
57
|
with:
|
|
@@ -65,5 +65,5 @@ jobs:
|
|
|
65
65
|
bundle update --jobs $(nproc) --retry 3
|
|
66
66
|
|
|
67
67
|
- run: bundle exec rbs collection install
|
|
68
|
-
- run: bundle exec rbs validate
|
|
68
|
+
- run: bundle exec rbs validate
|
|
69
69
|
- run: bundle exec steep check
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
-
https://github.com/yhara/simple_twitter/compare/v2.2.
|
|
2
|
+
https://github.com/yhara/simple_twitter/compare/v2.2.3...main
|
|
3
3
|
|
|
4
|
-
## v2.2.
|
|
4
|
+
## [v2.2.3](https://github.com/yhara/simple_twitter/releases/tag/v2.2.3) (2025-11-30)
|
|
5
|
+
https://github.com/yhara/simple_twitter/compare/v2.2.2...v2.2.3
|
|
6
|
+
|
|
7
|
+
* ci: Release gem from GitHub Actions
|
|
8
|
+
* https://github.com/yhara/simple_twitter/pull/47
|
|
9
|
+
|
|
10
|
+
## v2.2.2 (2023-09-11)
|
|
5
11
|
https://github.com/yhara/simple_twitter/compare/v2.2.1...v2.2.2
|
|
6
12
|
|
|
7
13
|
* [docs] Tweak yard doc
|
data/Gemfile
CHANGED
data/rbs_collection.lock.yaml
CHANGED
|
@@ -1,18 +1,64 @@
|
|
|
1
1
|
---
|
|
2
|
-
sources:
|
|
3
|
-
- type: git
|
|
4
|
-
name: ruby/gem_rbs_collection
|
|
5
|
-
revision: aeede7258d020bfd509541e0c8075ce833292409
|
|
6
|
-
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
7
|
-
repo_dir: gems
|
|
8
2
|
path: ".gem_rbs_collection"
|
|
9
3
|
gems:
|
|
4
|
+
- name: addressable
|
|
5
|
+
version: '2.8'
|
|
6
|
+
source:
|
|
7
|
+
type: git
|
|
8
|
+
name: ruby/gem_rbs_collection
|
|
9
|
+
revision: 2c49b34efb3ab42ec5160e1870c23d8349adb157
|
|
10
|
+
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
11
|
+
repo_dir: gems
|
|
12
|
+
- name: base64
|
|
13
|
+
version: '0'
|
|
14
|
+
source:
|
|
15
|
+
type: stdlib
|
|
16
|
+
- name: bigdecimal
|
|
17
|
+
version: '0'
|
|
18
|
+
source:
|
|
19
|
+
type: stdlib
|
|
20
|
+
- name: delegate
|
|
21
|
+
version: '0'
|
|
22
|
+
source:
|
|
23
|
+
type: stdlib
|
|
24
|
+
- name: diff-lcs
|
|
25
|
+
version: '1.5'
|
|
26
|
+
source:
|
|
27
|
+
type: git
|
|
28
|
+
name: ruby/gem_rbs_collection
|
|
29
|
+
revision: 2c49b34efb3ab42ec5160e1870c23d8349adb157
|
|
30
|
+
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
31
|
+
repo_dir: gems
|
|
32
|
+
- name: fileutils
|
|
33
|
+
version: '0'
|
|
34
|
+
source:
|
|
35
|
+
type: stdlib
|
|
36
|
+
- name: forwardable
|
|
37
|
+
version: '0'
|
|
38
|
+
source:
|
|
39
|
+
type: stdlib
|
|
40
|
+
- name: hashdiff
|
|
41
|
+
version: '1.1'
|
|
42
|
+
source:
|
|
43
|
+
type: git
|
|
44
|
+
name: ruby/gem_rbs_collection
|
|
45
|
+
revision: 2c49b34efb3ab42ec5160e1870c23d8349adb157
|
|
46
|
+
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
47
|
+
repo_dir: gems
|
|
10
48
|
- name: http
|
|
11
49
|
version: '5.1'
|
|
12
50
|
source:
|
|
13
51
|
type: git
|
|
14
52
|
name: ruby/gem_rbs_collection
|
|
15
|
-
revision:
|
|
53
|
+
revision: 2c49b34efb3ab42ec5160e1870c23d8349adb157
|
|
54
|
+
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
55
|
+
repo_dir: gems
|
|
56
|
+
- name: rake
|
|
57
|
+
version: '13.0'
|
|
58
|
+
source:
|
|
59
|
+
type: git
|
|
60
|
+
name: ruby/gem_rbs_collection
|
|
61
|
+
revision: 2c49b34efb3ab42ec5160e1870c23d8349adb157
|
|
16
62
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
17
63
|
repo_dir: gems
|
|
18
64
|
- name: simple_oauth
|
|
@@ -20,7 +66,15 @@ gems:
|
|
|
20
66
|
source:
|
|
21
67
|
type: git
|
|
22
68
|
name: ruby/gem_rbs_collection
|
|
23
|
-
revision:
|
|
69
|
+
revision: 2c49b34efb3ab42ec5160e1870c23d8349adb157
|
|
70
|
+
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
71
|
+
repo_dir: gems
|
|
72
|
+
- name: webmock
|
|
73
|
+
version: '3.19'
|
|
74
|
+
source:
|
|
75
|
+
type: git
|
|
76
|
+
name: ruby/gem_rbs_collection
|
|
77
|
+
revision: 2c49b34efb3ab42ec5160e1870c23d8349adb157
|
|
24
78
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
|
25
79
|
repo_dir: gems
|
|
26
80
|
gemfile_lock_path: Gemfile.lock
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_twitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yutaka HARA
|
|
8
8
|
- sue445
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: exe
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: http
|
|
@@ -135,6 +134,7 @@ files:
|
|
|
135
134
|
- ".env.example"
|
|
136
135
|
- ".github/dependabot.yml"
|
|
137
136
|
- ".github/workflows/pages.yml"
|
|
137
|
+
- ".github/workflows/release_gem.yml"
|
|
138
138
|
- ".github/workflows/test.yml"
|
|
139
139
|
- ".gitignore"
|
|
140
140
|
- ".rspec"
|
|
@@ -171,7 +171,6 @@ metadata:
|
|
|
171
171
|
changelog_uri: https://github.com/yhara/simple_twitter/blob/main/CHANGELOG.md
|
|
172
172
|
documentation_uri: https://yhara.github.io/simple_twitter/
|
|
173
173
|
rubygems_mfa_required: 'true'
|
|
174
|
-
post_install_message:
|
|
175
174
|
rdoc_options: []
|
|
176
175
|
require_paths:
|
|
177
176
|
- lib
|
|
@@ -186,8 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
186
185
|
- !ruby/object:Gem::Version
|
|
187
186
|
version: '0'
|
|
188
187
|
requirements: []
|
|
189
|
-
rubygems_version: 3.
|
|
190
|
-
signing_key:
|
|
188
|
+
rubygems_version: 3.6.7
|
|
191
189
|
specification_version: 4
|
|
192
190
|
summary: Dead simple client for X (formerly Twitter) API v1/v2
|
|
193
191
|
test_files: []
|