zerobounce 0.2.0 → 0.2.2
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 +10 -0
- data/.github/workflows/gem-push.yml +28 -27
- data/.github/workflows/ruby.yml +15 -15
- data/README.md +1 -3
- data/lib/zerobounce/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9317c9c0d5ce41ca5c3d27d9d71706383b9687d65b58eed217a786e1c4d1ab9a
|
4
|
+
data.tar.gz: 9924d6348aec8c24c470384569f183bc107746ac16d67c699b455c68e70b4b3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fa9a4f46f860bb9352e71ed50017cf6df96426a52d44b1f2c3ebdfa9f467a74b353bcbcd6ced03e19264034d141272f438763f2e8c0f098c901cf7cafed5532
|
7
|
+
data.tar.gz: eb17307f8b3bd194abfac75e20fa18c56856d3c421f4a98e294ba98114dcf80edf652d849b6cb56a39238f0a08ba02ac6866d4619286ab16ee157ac3bc41d4d2
|
@@ -2,7 +2,8 @@ name: Ruby Gem
|
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
5
|
-
|
5
|
+
tags:
|
6
|
+
- v*
|
6
7
|
|
7
8
|
jobs:
|
8
9
|
build:
|
@@ -13,31 +14,31 @@ jobs:
|
|
13
14
|
packages: write
|
14
15
|
|
15
16
|
steps:
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
- uses: actions/checkout@v2
|
18
|
+
- name: Set up Ruby 2.6
|
19
|
+
uses: actions/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: 2.6.x
|
21
22
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
23
|
+
- name: Publish to GPR
|
24
|
+
run: |
|
25
|
+
mkdir -p $HOME/.gem
|
26
|
+
touch $HOME/.gem/credentials
|
27
|
+
chmod 0600 $HOME/.gem/credentials
|
28
|
+
printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
29
|
+
gem build *.gemspec
|
30
|
+
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
|
31
|
+
env:
|
32
|
+
GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
|
33
|
+
OWNER: ${{ github.repository_owner }}
|
33
34
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
35
|
+
- name: Publish to RubyGems
|
36
|
+
run: |
|
37
|
+
mkdir -p $HOME/.gem
|
38
|
+
touch $HOME/.gem/credentials
|
39
|
+
chmod 0600 $HOME/.gem/credentials
|
40
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
41
|
+
gem build *.gemspec
|
42
|
+
gem push *.gem
|
43
|
+
env:
|
44
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/.github/workflows/ruby.yml
CHANGED
@@ -8,27 +8,27 @@ name: Ruby
|
|
8
8
|
|
9
9
|
on:
|
10
10
|
push:
|
11
|
-
branches:
|
11
|
+
branches:
|
12
|
+
- master
|
13
|
+
- main
|
12
14
|
pull_request:
|
13
|
-
branches:
|
15
|
+
branches:
|
16
|
+
- master
|
17
|
+
- main
|
14
18
|
|
15
19
|
jobs:
|
16
20
|
test:
|
17
|
-
|
18
21
|
runs-on: ubuntu-latest
|
19
22
|
strategy:
|
20
23
|
matrix:
|
21
|
-
ruby-version: ['2.5', '2.6', '2.7', '3.0']
|
24
|
+
ruby-version: [ '2.5', '2.6', '2.7', '3.0' ]
|
22
25
|
|
23
26
|
steps:
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
33
|
-
- name: Run tests
|
34
|
-
run: bundle exec rake
|
27
|
+
- uses: actions/checkout@v2
|
28
|
+
- name: Set up Ruby
|
29
|
+
uses: ruby/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: ${{ matrix.ruby-version }}
|
32
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
33
|
+
- name: Run tests
|
34
|
+
run: bundle exec rake
|
data/README.md
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
# Zerobounce
|
2
|
-
[](https://codeclimate.com/github/afrase/zerobounce/test_coverage)
|
4
|
-
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fafrase%2Fzerobounce?ref=badge_shield)
|
2
|
+
[](https://github.com/afrase/zerobounce/actions/workflows/ruby.yml)
|
5
3
|
[](https://badge.fury.io/rb/zerobounce)
|
6
4
|
|
7
5
|
A ruby client for Zerobounce.net API.
|
data/lib/zerobounce/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zerobounce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Frase
|
@@ -214,6 +214,7 @@ files:
|
|
214
214
|
- ".editorconfig"
|
215
215
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
216
216
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
217
|
+
- ".github/dependabot.yml"
|
217
218
|
- ".github/pull_request_template.md"
|
218
219
|
- ".github/workflows/gem-push.yml"
|
219
220
|
- ".github/workflows/ruby.yml"
|