faraday_boolean 1.0.0 → 1.0.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 +4 -4
- data/.github/dependabot.yml +12 -0
- data/.github/workflows/pages.yml +59 -0
- data/.github/workflows/release_gem.yml +41 -0
- data/.github/workflows/test.yml +22 -48
- data/.yardopts +2 -0
- data/CHANGELOG.md +8 -2
- data/README.md +1 -1
- data/faraday_boolean.gemspec +4 -1
- data/lib/faraday_boolean/version.rb +1 -1
- metadata +37 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db3f3c2651fcf2bd73e628044a826ec642f7bdb9093e366e1770ce85c62c6435
|
|
4
|
+
data.tar.gz: ffa80b4c685f4d5445b060affbcb1e1a094062436defd0ec8d760c26cf059fb1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5eb01d34ccc4290bd613cd2444e926e34467ccb364c0ec36815d76aaac0770209cbf3d020c1fcde101cbfcb7d979536ad72511e8a3c53ea69acf4fd3ab5e438d
|
|
7
|
+
data.tar.gz: 9f1397ef1877d9becb8f801522a2b74ffc9fe4a8fd26c74eefa9aecb731886eead7e528014ff64f1bb1513ac76280f7a9d0fbb363607db2091127958335a142a
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
2
|
+
version: 2
|
|
3
|
+
|
|
4
|
+
updates:
|
|
5
|
+
- package-ecosystem: github-actions
|
|
6
|
+
directory: /
|
|
7
|
+
schedule:
|
|
8
|
+
interval: weekly
|
|
9
|
+
cooldown:
|
|
10
|
+
default-days: 7
|
|
11
|
+
assignees:
|
|
12
|
+
- sue445
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Simple workflow for deploying static content to GitHub Pages
|
|
2
|
+
name: Deploy static content to Pages
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
# Runs on pushes targeting the default branch
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- master
|
|
9
|
+
|
|
10
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
|
|
13
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
14
|
+
permissions:
|
|
15
|
+
contents: read
|
|
16
|
+
pages: write
|
|
17
|
+
id-token: write
|
|
18
|
+
|
|
19
|
+
# Allow one concurrent deployment
|
|
20
|
+
concurrency:
|
|
21
|
+
group: "pages"
|
|
22
|
+
cancel-in-progress: true
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
# Single deploy job since we're just deploying
|
|
26
|
+
deploy:
|
|
27
|
+
environment:
|
|
28
|
+
name: github-pages
|
|
29
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
steps:
|
|
32
|
+
- name: Checkout
|
|
33
|
+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
34
|
+
|
|
35
|
+
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
|
|
36
|
+
with:
|
|
37
|
+
ruby-version: ruby
|
|
38
|
+
bundler-cache: true
|
|
39
|
+
|
|
40
|
+
- run: bundle exec yard
|
|
41
|
+
|
|
42
|
+
- name: Setup Pages
|
|
43
|
+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
|
|
44
|
+
- name: Upload artifact
|
|
45
|
+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
|
|
46
|
+
with:
|
|
47
|
+
# Upload entire repository
|
|
48
|
+
path: './doc'
|
|
49
|
+
- name: Deploy to GitHub Pages
|
|
50
|
+
id: deployment
|
|
51
|
+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
|
|
52
|
+
|
|
53
|
+
- name: Slack Notification (not success)
|
|
54
|
+
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
55
|
+
if: "! success()"
|
|
56
|
+
continue-on-error: true
|
|
57
|
+
with:
|
|
58
|
+
status: ${{ job.status }}
|
|
59
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -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 == 'sue445/faraday_boolean'
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
environment:
|
|
12
|
+
name: rubygems.org
|
|
13
|
+
url: https://rubygems.org/gems/faraday_boolean
|
|
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
|
@@ -12,65 +12,44 @@ on:
|
|
|
12
12
|
schedule:
|
|
13
13
|
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
|
14
14
|
|
|
15
|
-
env:
|
|
16
|
-
CI: "true"
|
|
17
|
-
|
|
18
15
|
jobs:
|
|
19
16
|
test:
|
|
20
17
|
runs-on: ubuntu-latest
|
|
21
18
|
|
|
22
|
-
container: ${{ matrix.ruby }}
|
|
23
|
-
|
|
24
19
|
strategy:
|
|
25
20
|
fail-fast: false
|
|
26
21
|
|
|
27
22
|
matrix:
|
|
28
23
|
ruby:
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
-
|
|
36
|
-
allow_failures: "true"
|
|
24
|
+
- "2.6"
|
|
25
|
+
- "2.7"
|
|
26
|
+
- "3.0"
|
|
27
|
+
- "3.1"
|
|
28
|
+
- "3.2"
|
|
29
|
+
- "3.3"
|
|
30
|
+
- "3.4"
|
|
37
31
|
|
|
38
32
|
steps:
|
|
39
|
-
- uses: actions/checkout@
|
|
40
|
-
|
|
33
|
+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
41
34
|
|
|
42
|
-
-
|
|
43
|
-
uses: actions/cache@v1
|
|
44
|
-
id: cache_gem
|
|
35
|
+
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
|
|
45
36
|
with:
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
restore-keys: |
|
|
49
|
-
v1-gem-${{ runner.os }}-${{ matrix.ruby }}-
|
|
50
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
37
|
+
ruby-version: ${{ matrix.ruby }}
|
|
38
|
+
bundler-cache: true
|
|
51
39
|
|
|
52
|
-
-
|
|
53
|
-
run: |
|
|
54
|
-
set -xe
|
|
55
|
-
bundle config path vendor/bundle
|
|
56
|
-
bundle update --jobs $(nproc) --retry 3
|
|
57
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
40
|
+
- run: bundle update --jobs $(nproc) --retry 3
|
|
58
41
|
|
|
59
42
|
- name: Setup Code Climate Test Reporter
|
|
60
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
43
|
+
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
61
44
|
with:
|
|
62
45
|
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
63
46
|
command: before-build
|
|
64
47
|
continue-on-error: true
|
|
65
48
|
|
|
66
|
-
-
|
|
67
|
-
run: |
|
|
68
|
-
set -xe
|
|
69
|
-
bundle exec rspec
|
|
70
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
49
|
+
- run: bundle exec rspec
|
|
71
50
|
|
|
72
51
|
- name: Teardown Code Climate Test Reporter
|
|
73
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
52
|
+
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
74
53
|
with:
|
|
75
54
|
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
76
55
|
command: after-build
|
|
@@ -78,15 +57,13 @@ jobs:
|
|
|
78
57
|
continue-on-error: true
|
|
79
58
|
|
|
80
59
|
- name: Slack Notification (not success)
|
|
81
|
-
uses:
|
|
60
|
+
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
82
61
|
if: "! success()"
|
|
83
62
|
continue-on-error: true
|
|
84
63
|
with:
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
89
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
64
|
+
status: ${{ job.status }}
|
|
65
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
66
|
+
matrix: ${{ toJson(matrix) }}
|
|
90
67
|
|
|
91
68
|
notify:
|
|
92
69
|
needs:
|
|
@@ -96,12 +73,9 @@ jobs:
|
|
|
96
73
|
|
|
97
74
|
steps:
|
|
98
75
|
- name: Slack Notification (success)
|
|
99
|
-
uses:
|
|
76
|
+
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
|
|
100
77
|
if: always()
|
|
101
78
|
continue-on-error: true
|
|
102
79
|
with:
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
icon_emoji: ":octocat:"
|
|
106
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
107
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
80
|
+
status: ${{ job.status }}
|
|
81
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/faraday_boolean/compare/v1.0.
|
|
2
|
+
[full changelog](http://github.com/sue445/faraday_boolean/compare/v1.0.1...master)
|
|
3
|
+
|
|
4
|
+
## v1.0.1
|
|
5
|
+
[full changelog](http://github.com/sue445/faraday_boolean/compare/v1.0.0...v1.0.1)
|
|
6
|
+
|
|
7
|
+
* Release gem from GitHub Actions
|
|
8
|
+
* https://github.com/sue445/faraday_boolean/pull/49
|
|
3
9
|
|
|
4
10
|
## v1.0.0
|
|
5
11
|
[full changelog](http://github.com/sue445/faraday_boolean/compare/v0.1.1...v1.0.0)
|
|
6
12
|
|
|
7
|
-
* :bomb: [BREAKING CHANGE] Support faraday v2+ and drop support ruby < 2.6
|
|
13
|
+
* :bomb: **[BREAKING CHANGE]** Support faraday v2+ and drop support ruby < 2.6
|
|
8
14
|
* https://github.com/sue445/faraday_boolean/pull/28
|
|
9
15
|
|
|
10
16
|
## v0.1.1
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Faraday response parser for boolean body
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/rb/faraday_boolean)
|
|
6
|
-
[](https://github.com/sue445/faraday_boolean/actions/workflows/test.yml)
|
|
7
7
|
[](https://coveralls.io/github/sue445/faraday_boolean?branch=master)
|
|
8
8
|
[](https://codeclimate.com/github/sue445/faraday_boolean)
|
|
9
9
|
|
data/faraday_boolean.gemspec
CHANGED
|
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
20
20
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
21
21
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
22
|
+
spec.metadata["documentation_uri"] = "https://sue445.github.io/faraday_boolean/"
|
|
22
23
|
spec.metadata["rubygems_mfa_required"] = "true"
|
|
23
24
|
|
|
24
25
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
@@ -29,10 +30,12 @@ Gem::Specification.new do |spec|
|
|
|
29
30
|
spec.add_dependency "faraday", ">= 2.0"
|
|
30
31
|
|
|
31
32
|
spec.add_development_dependency "bundler", ">= 1.10"
|
|
32
|
-
spec.add_development_dependency "
|
|
33
|
+
spec.add_development_dependency "coveralls_reborn"
|
|
33
34
|
spec.add_development_dependency "rake", ">= 10.0"
|
|
34
35
|
spec.add_development_dependency "rspec"
|
|
35
36
|
spec.add_development_dependency "rspec-its"
|
|
36
37
|
spec.add_development_dependency "simplecov"
|
|
38
|
+
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
37
39
|
spec.add_development_dependency "webmock"
|
|
40
|
+
spec.add_development_dependency "yard"
|
|
38
41
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: faraday_boolean
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: faraday
|
|
@@ -39,7 +38,7 @@ dependencies:
|
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '1.10'
|
|
41
40
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
41
|
+
name: coveralls_reborn
|
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
|
44
43
|
requirements:
|
|
45
44
|
- - ">="
|
|
@@ -108,6 +107,20 @@ dependencies:
|
|
|
108
107
|
- - ">="
|
|
109
108
|
- !ruby/object:Gem::Version
|
|
110
109
|
version: '0'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: term-ansicolor
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "!="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: 1.11.1
|
|
117
|
+
type: :development
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - "!="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: 1.11.1
|
|
111
124
|
- !ruby/object:Gem::Dependency
|
|
112
125
|
name: webmock
|
|
113
126
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -122,6 +135,20 @@ dependencies:
|
|
|
122
135
|
- - ">="
|
|
123
136
|
- !ruby/object:Gem::Version
|
|
124
137
|
version: '0'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: yard
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
type: :development
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0'
|
|
125
152
|
description: Faraday response parser for boolean body
|
|
126
153
|
email:
|
|
127
154
|
- sue445@sue445.net
|
|
@@ -130,9 +157,13 @@ extensions: []
|
|
|
130
157
|
extra_rdoc_files: []
|
|
131
158
|
files:
|
|
132
159
|
- ".coveralls.yml"
|
|
160
|
+
- ".github/dependabot.yml"
|
|
161
|
+
- ".github/workflows/pages.yml"
|
|
162
|
+
- ".github/workflows/release_gem.yml"
|
|
133
163
|
- ".github/workflows/test.yml"
|
|
134
164
|
- ".gitignore"
|
|
135
165
|
- ".rspec"
|
|
166
|
+
- ".yardopts"
|
|
136
167
|
- CHANGELOG.md
|
|
137
168
|
- Gemfile
|
|
138
169
|
- LICENSE.txt
|
|
@@ -151,8 +182,8 @@ metadata:
|
|
|
151
182
|
homepage_uri: https://github.com/sue445/faraday_boolean
|
|
152
183
|
source_code_uri: https://github.com/sue445/faraday_boolean
|
|
153
184
|
changelog_uri: https://github.com/sue445/faraday_boolean/blob/master/CHANGELOG.md
|
|
185
|
+
documentation_uri: https://sue445.github.io/faraday_boolean/
|
|
154
186
|
rubygems_mfa_required: 'true'
|
|
155
|
-
post_install_message:
|
|
156
187
|
rdoc_options: []
|
|
157
188
|
require_paths:
|
|
158
189
|
- lib
|
|
@@ -167,8 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
198
|
- !ruby/object:Gem::Version
|
|
168
199
|
version: '0'
|
|
169
200
|
requirements: []
|
|
170
|
-
rubygems_version: 3.
|
|
171
|
-
signing_key:
|
|
201
|
+
rubygems_version: 3.6.7
|
|
172
202
|
specification_version: 4
|
|
173
203
|
summary: Faraday response parser for boolean body
|
|
174
204
|
test_files: []
|