dwf 0.1.4 → 0.1.5
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/build_gem.yaml +37 -0
- data/README.md +2 -2
- data/dwf.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cfd1989fd7228daec1f81759e249cb3a0d6e920e465b38f1f6998239c78f6c7
|
|
4
|
+
data.tar.gz: 0e4139ec4372ef7f5fb91b61cae9b2131e7e5b5983e25219a213b3edb821c9c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38b96a776878ddce8df1757ecdba3452a833f117536b9a3f44a07dc801ce71be7ac7cfac997622cd3e172c1a2929ac333f50e4823f901cb844149189c18563de
|
|
7
|
+
data.tar.gz: 3a32f7469c5a7009e8f04a1d1c9e35fcd8de4fb322593f8e3c9f90fa617fe96eda8dc768dd97c5a3f7bb9044a2eaa87632970fcdddfd6bb57e96c6d72446951b
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Ruby Gem
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
# Manually publish
|
|
5
|
+
workflow_dispatch:
|
|
6
|
+
# Alternatively, publish whenever changes are merged to the `main` branch.
|
|
7
|
+
push:
|
|
8
|
+
branches: [ master ]
|
|
9
|
+
pull_request:
|
|
10
|
+
branches: [ master ]
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build:
|
|
14
|
+
name: Build + Publish
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
permissions:
|
|
17
|
+
packages: write
|
|
18
|
+
contents: read
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v2
|
|
22
|
+
- name: Set up Ruby 3.0.0
|
|
23
|
+
uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
|
|
24
|
+
with:
|
|
25
|
+
ruby-version: 3.0.0
|
|
26
|
+
- run: bundle install
|
|
27
|
+
|
|
28
|
+
- name: Publish to RubyGems
|
|
29
|
+
run: |
|
|
30
|
+
mkdir -p $HOME/.gem
|
|
31
|
+
touch $HOME/.gem/credentials
|
|
32
|
+
chmod 0600 $HOME/.gem/credentials
|
|
33
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
34
|
+
gem build *.gemspec
|
|
35
|
+
gem push *.gem
|
|
36
|
+
env:
|
|
37
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
data/README.md
CHANGED
data/dwf.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dwf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- dthtien
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2021-09-05 00:00:00.000000000 Z
|
|
@@ -73,6 +73,7 @@ executables: []
|
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
|
+
- ".github/workflows/build_gem.yaml"
|
|
76
77
|
- ".github/workflows/test.yaml"
|
|
77
78
|
- ".gitignore"
|
|
78
79
|
- ".rspec"
|
|
@@ -95,7 +96,7 @@ homepage: https://github.com/dthtien/wf
|
|
|
95
96
|
licenses:
|
|
96
97
|
- MIT
|
|
97
98
|
metadata: {}
|
|
98
|
-
post_install_message:
|
|
99
|
+
post_install_message:
|
|
99
100
|
rdoc_options: []
|
|
100
101
|
require_paths:
|
|
101
102
|
- lib
|
|
@@ -111,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
112
|
version: '0'
|
|
112
113
|
requirements: []
|
|
113
114
|
rubygems_version: 3.2.3
|
|
114
|
-
signing_key:
|
|
115
|
+
signing_key:
|
|
115
116
|
specification_version: 4
|
|
116
117
|
summary: Gush cloned without ActiveJob but requried Sidekiq. This project is for researching
|
|
117
118
|
DSL purpose
|