pvoutput 0.6.0 → 1.0.0
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/gem-push.yaml +3 -7
- data/CHANGELOG.md +5 -0
- data/README.md +14 -1
- data/lib/pvoutput/version.rb +1 -1
- data/pvoutput.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8838c12458d732306134a95d095732b0601b943a57bd327591390893fde07197
|
|
4
|
+
data.tar.gz: b302c36decace96a670043a6642bbd19b1a1c8ab08266e8dde4b3c7f8f23f92a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b60f6fbe559f1fc9a15b9debcf5703eaa42aa95bbe35aa7ae3fd8016197d279ce8f3c62414a2c1faa05adfaf7efccbfe2dd9bd0044ec28f239855b0b1492080
|
|
7
|
+
data.tar.gz: 3e203a8ce6c1c1309ec1ad22f37267f94d74820b6c4a332b36a94c818c1bee9ae2442223b31d45c3b6c243a0887c4023a1e9b22c2f6deadf24c10022854d7f32
|
|
@@ -11,19 +11,15 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
steps:
|
|
13
13
|
- uses: actions/checkout@v2
|
|
14
|
-
- name: Set up Ruby 2.
|
|
14
|
+
- name: Set up Ruby 2.7
|
|
15
15
|
uses: ruby/setup-ruby@v1
|
|
16
16
|
with:
|
|
17
|
-
ruby-version: 2.
|
|
17
|
+
ruby-version: 2.7
|
|
18
18
|
|
|
19
19
|
- name: Install dependencies
|
|
20
20
|
run: bundle install
|
|
21
21
|
- name: Publish to RubyGems
|
|
22
22
|
run: |
|
|
23
|
-
mkdir -p $HOME/.gem
|
|
24
|
-
touch $HOME/.gem/credentials
|
|
25
|
-
chmod 0600 $HOME/.gem/credentials
|
|
26
|
-
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
27
23
|
rake release
|
|
28
24
|
env:
|
|
29
|
-
GEM_HOST_API_KEY: "${{secrets.
|
|
25
|
+
GEM_HOST_API_KEY: "${{secrets.GEM_HOST_API_KEY}}"
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -157,7 +157,20 @@ You can enable HTTParty debugging to see the requests by setting `PVOUTPUT_DEBUG
|
|
|
157
157
|
|
|
158
158
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
159
159
|
|
|
160
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
160
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
161
|
+
|
|
162
|
+
## Release
|
|
163
|
+
|
|
164
|
+
To release a new version:
|
|
165
|
+
* Create a branch for the release
|
|
166
|
+
* Update the version number in `version.rb`
|
|
167
|
+
* Update CHANGELOG.md
|
|
168
|
+
* git commit -pm 'Release 1.x.x'
|
|
169
|
+
* git tag v1.x.x
|
|
170
|
+
* git push
|
|
171
|
+
* git push --tags
|
|
172
|
+
* In GitHub add the Change Log section to the release and save it
|
|
173
|
+
* Check everything looks OK in GitHub Actions
|
|
161
174
|
|
|
162
175
|
## Contributing
|
|
163
176
|
|
data/lib/pvoutput/version.rb
CHANGED
data/pvoutput.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.require_paths = ['lib']
|
|
20
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
21
21
|
|
|
22
|
-
spec.required_ruby_version = '>= 2.
|
|
22
|
+
spec.required_ruby_version = '>= 2.5'
|
|
23
23
|
|
|
24
24
|
spec.add_dependency 'httparty'
|
|
25
25
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pvoutput
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Ferlito
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -201,14 +201,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
201
201
|
requirements:
|
|
202
202
|
- - ">="
|
|
203
203
|
- !ruby/object:Gem::Version
|
|
204
|
-
version: '2.
|
|
204
|
+
version: '2.5'
|
|
205
205
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
requirements:
|
|
207
207
|
- - ">="
|
|
208
208
|
- !ruby/object:Gem::Version
|
|
209
209
|
version: '0'
|
|
210
210
|
requirements: []
|
|
211
|
-
rubygems_version: 3.
|
|
211
|
+
rubygems_version: 3.1.4
|
|
212
212
|
signing_key:
|
|
213
213
|
specification_version: 4
|
|
214
214
|
summary: Library to speak to the PVOutput API
|