virtuous 0.0.1 → 0.0.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/publish.yml +23 -0
- data/CHANGELOG.md +3 -1
- data/README.md +1 -1
- data/lib/virtuous/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9f937cdf43802f0f1a11389e495f22a8dcbbce4899bab8489305b2cd33f70f6
|
|
4
|
+
data.tar.gz: 76d4f355d36fb2ed6e5bb9cfbc4e4f4fa89b6bb3cc03666fe12ef7699b5784d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb33edfcd401c81370d6079b9d85d67036e2c27e40cd1d441ae94bc34de34c50b6609e73ccfe6bc323d38bd224d98f4420996e83a85b387956517e20256ba9c9
|
|
7
|
+
data.tar.gz: f3021bf9fc25965c14e902f68678e41faffb3bad502ff25dd23c06504147aee5ebaa3edc5de33a07a6baf2d09665320b00c4a1c5cdcb2217b922128033483ed4
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Publish
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read # to checkout the code (actions/checkout)
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
name: Publish to Rubygems
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v3
|
|
16
|
+
- name: Set up Ruby
|
|
17
|
+
uses: ruby/setup-ruby@v1
|
|
18
|
+
with:
|
|
19
|
+
bundler-cache: true
|
|
20
|
+
- name: Publish to RubyGems
|
|
21
|
+
uses: dawidd6/action-publish-gem@v1
|
|
22
|
+
with:
|
|
23
|
+
api_key: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.0.2] - 2024-01-04
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- A Client class with support for api key and OAuth authentication
|
|
@@ -15,4 +17,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
15
17
|
- Methods to find, create, update and delete gifts
|
|
16
18
|
- Method query gift designations
|
|
17
19
|
|
|
18
|
-
[unreleased]: https://github.com/taylorbrooks/virtuous/compare/v0.0.
|
|
20
|
+
[unreleased]: https://github.com/taylorbrooks/virtuous/compare/v0.0.2...HEAD
|
data/README.md
CHANGED
data/lib/virtuous/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: virtuous
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Taylor Brooks
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -39,11 +39,12 @@ dependencies:
|
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
description: A Ruby wrapper for the Virtuous CRM API
|
|
42
|
-
email:
|
|
42
|
+
email:
|
|
43
43
|
executables: []
|
|
44
44
|
extensions: []
|
|
45
45
|
extra_rdoc_files: []
|
|
46
46
|
files:
|
|
47
|
+
- ".github/workflows/publish.yml"
|
|
47
48
|
- ".github/workflows/test.yml"
|
|
48
49
|
- ".gitignore"
|
|
49
50
|
- ".reek.yml"
|
|
@@ -99,7 +100,7 @@ licenses:
|
|
|
99
100
|
- MIT
|
|
100
101
|
metadata:
|
|
101
102
|
rubygems_mfa_required: 'true'
|
|
102
|
-
post_install_message:
|
|
103
|
+
post_install_message:
|
|
103
104
|
rdoc_options: []
|
|
104
105
|
require_paths:
|
|
105
106
|
- lib
|
|
@@ -115,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
116
|
version: '0'
|
|
116
117
|
requirements: []
|
|
117
118
|
rubygems_version: 3.4.10
|
|
118
|
-
signing_key:
|
|
119
|
+
signing_key:
|
|
119
120
|
specification_version: 4
|
|
120
121
|
summary: A Ruby wrapper for the Virtuous CRM API
|
|
121
122
|
test_files: []
|