opera 0.2.1 → 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/workflows/release.yml +66 -0
- data/.github/workflows/specs.yml +0 -3
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/opera/version.rb +1 -1
- metadata +2 -3
- data/.github/workflows/gem-push.yml +0 -31
- data/.github/workflows/tag.yml +0 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a43643bc863d6fd8535fa08b7e55d1d0d3141dd35f24894a8ebbeca55989b25
|
|
4
|
+
data.tar.gz: 7fb3c80f08215391d687cde118d5cac0e88db838c771ea34c01a2a3c5ba004c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7470108eef670d9038412c4f6e86e4bc88f7b71189d299ebae99f71e61b7c1e09e530ed28ac9a8e55ee3cc2165d0354d25eea5d0bd95d804d994f239021019b1
|
|
7
|
+
data.tar.gz: d49010222f63b3e669e1d7070863cdcc216e5c19e63471fc672a650ab50e0c9df7e2550613d851363966854024b1c4902b1e8b0faf57cae8038e39028684e50b
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ master ]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
test:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
ruby-version: [ '2.6', '2.7', '3.0' ]
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- name: Set up Ruby
|
|
17
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
18
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
19
|
+
# uses: ruby/setup-ruby@v1
|
|
20
|
+
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
|
21
|
+
with:
|
|
22
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
23
|
+
bundler-cache: false # runs 'bundle install' and caches installed gems automatically
|
|
24
|
+
- name: Install gems
|
|
25
|
+
run: bundle install
|
|
26
|
+
- name: Run tests
|
|
27
|
+
run: bundle exec rspec
|
|
28
|
+
|
|
29
|
+
tag:
|
|
30
|
+
needs: test
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
|
|
33
|
+
steps:
|
|
34
|
+
- uses: actions/checkout@v2
|
|
35
|
+
|
|
36
|
+
- name: Tag automatically
|
|
37
|
+
run: git tag v`cat lib/opera/version.rb | grep 'VERSION' | awk '{ print $3 $4 }' | sed "s/'//g"`
|
|
38
|
+
|
|
39
|
+
- name: Push tags
|
|
40
|
+
run: git push origin --tags
|
|
41
|
+
|
|
42
|
+
publish:
|
|
43
|
+
needs: tag
|
|
44
|
+
name: Build + Publish
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
permissions:
|
|
47
|
+
contents: read
|
|
48
|
+
packages: write
|
|
49
|
+
|
|
50
|
+
steps:
|
|
51
|
+
- uses: actions/checkout@v2
|
|
52
|
+
- name: Set up Ruby 2.6
|
|
53
|
+
uses: actions/setup-ruby@v1
|
|
54
|
+
with:
|
|
55
|
+
ruby-version: 2.6.x
|
|
56
|
+
|
|
57
|
+
- name: Publish to RubyGems
|
|
58
|
+
run: |
|
|
59
|
+
mkdir -p $HOME/.gem
|
|
60
|
+
touch $HOME/.gem/credentials
|
|
61
|
+
chmod 0600 $HOME/.gem/credentials
|
|
62
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
63
|
+
gem build *.gemspec
|
|
64
|
+
gem push *.gem
|
|
65
|
+
env:
|
|
66
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/.github/workflows/specs.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
data/lib/opera/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opera
|
|
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
|
- ProFinda Development Team
|
|
@@ -59,9 +59,8 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
-
- ".github/workflows/
|
|
62
|
+
- ".github/workflows/release.yml"
|
|
63
63
|
- ".github/workflows/specs.yml"
|
|
64
|
-
- ".github/workflows/tag.yml"
|
|
65
64
|
- ".gitignore"
|
|
66
65
|
- ".rspec"
|
|
67
66
|
- ".travis.yml"
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
name: Ruby Gem
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [ master ]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
build:
|
|
9
|
-
name: Build + Publish
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
permissions:
|
|
12
|
-
contents: read
|
|
13
|
-
packages: write
|
|
14
|
-
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v2
|
|
17
|
-
- name: Set up Ruby 2.6
|
|
18
|
-
uses: actions/setup-ruby@v1
|
|
19
|
-
with:
|
|
20
|
-
ruby-version: 2.6.x
|
|
21
|
-
|
|
22
|
-
- name: Publish to RubyGems
|
|
23
|
-
run: |
|
|
24
|
-
mkdir -p $HOME/.gem
|
|
25
|
-
touch $HOME/.gem/credentials
|
|
26
|
-
chmod 0600 $HOME/.gem/credentials
|
|
27
|
-
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
28
|
-
gem build *.gemspec
|
|
29
|
-
gem push *.gem
|
|
30
|
-
env:
|
|
31
|
-
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/.github/workflows/tag.yml
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# This is a basic workflow to help you get started with Actions
|
|
2
|
-
|
|
3
|
-
name: Tag
|
|
4
|
-
|
|
5
|
-
# Controls when the workflow will run
|
|
6
|
-
on:
|
|
7
|
-
# Triggers the workflow on push or pull request events but only for the master branch
|
|
8
|
-
push:
|
|
9
|
-
branches: [ master ]
|
|
10
|
-
|
|
11
|
-
jobs:
|
|
12
|
-
build:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v2
|
|
17
|
-
|
|
18
|
-
- name: Tag automatically
|
|
19
|
-
run: git tag v`cat lib/opera/version.rb | grep 'VERSION' | awk '{ print $3 $4 }' | sed "s/'//g"`
|
|
20
|
-
|
|
21
|
-
- name: Push tags
|
|
22
|
-
run: git push origin --tags
|