aptible-resource 1.1.2 → 1.1.3
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/test.yml +34 -0
- data/README.md +0 -1
- data/lib/aptible/resource/base.rb +1 -0
- data/lib/aptible/resource/version.rb +1 -1
- metadata +7 -7
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5900b6d991cbb35f8f24586a4159c5e20a42bf7eb084c896a1e03d2fd88d393
|
4
|
+
data.tar.gz: 3bc765fa4be89779be7e70e90d64827281057a1857b2fa6d6bdf7d6473561c19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8829126f5c77257f43619f14a8db713c4fe16ad7c63c9d0823047aca7fd3e0d0790238ee677d21648b9cf5e8e55611d062213aa631d4d6053436a6f3254d84e3
|
7
|
+
data.tar.gz: c3b5c7229ca716235b946402fc92b3b6295b3707e05a762e988956e45c5d32080fcd11fd6ef18c405bb3526ec941bc8b389281a8da9045f8b51e40502d90d5df
|
@@ -0,0 +1,34 @@
|
|
1
|
+
name: Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
push:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
test:
|
13
|
+
name: Run tests on Ruby ${{ matrix.RUBY_VERSION }}
|
14
|
+
runs-on: ubuntu-24.04
|
15
|
+
strategy:
|
16
|
+
fail-fast: false
|
17
|
+
matrix:
|
18
|
+
RUBY_VERSION: [2.2, 2.3, 2.6, 2.7]
|
19
|
+
steps:
|
20
|
+
- name: Check out code
|
21
|
+
uses: actions/checkout@v4
|
22
|
+
|
23
|
+
- name: Install Ruby
|
24
|
+
uses: ruby/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
ruby-version: ${{ matrix.RUBY_VERSION }}
|
27
|
+
bundler: 1.17.3
|
28
|
+
bundler-cache: true
|
29
|
+
|
30
|
+
- name: Rubocop
|
31
|
+
run: bundle exec rake rubocop
|
32
|
+
|
33
|
+
- name: Test
|
34
|
+
run: bundle exec rspec
|
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
#  Aptible::Resource
|
2
2
|
|
3
3
|
[](https://rubygems.org/gems/aptible-resource)
|
4
|
-
[](https://travis-ci.org/aptible/aptible-resource)
|
5
4
|
[](https://gemnasium.com/aptible/aptible-resource)
|
6
5
|
|
7
6
|
Foundation classes for Aptible resource server gems.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aptible-resource
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frank Macreery
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -186,10 +186,10 @@ extensions: []
|
|
186
186
|
extra_rdoc_files: []
|
187
187
|
files:
|
188
188
|
- ".github/CODEOWNERS"
|
189
|
+
- ".github/workflows/test.yml"
|
189
190
|
- ".gitignore"
|
190
191
|
- ".rspec"
|
191
192
|
- ".rubocop.yml"
|
192
|
-
- ".travis.yml"
|
193
193
|
- Gemfile
|
194
194
|
- LICENSE.md
|
195
195
|
- README.md
|
@@ -228,7 +228,7 @@ homepage: https://github.com/aptible/aptible-resource
|
|
228
228
|
licenses:
|
229
229
|
- MIT
|
230
230
|
metadata: {}
|
231
|
-
post_install_message:
|
231
|
+
post_install_message:
|
232
232
|
rdoc_options: []
|
233
233
|
require_paths:
|
234
234
|
- lib
|
@@ -243,8 +243,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
243
243
|
- !ruby/object:Gem::Version
|
244
244
|
version: '0'
|
245
245
|
requirements: []
|
246
|
-
rubygems_version: 3.0.3
|
247
|
-
signing_key:
|
246
|
+
rubygems_version: 3.0.3.1
|
247
|
+
signing_key:
|
248
248
|
specification_version: 4
|
249
249
|
summary: Foundation classes for Aptible resource server gems
|
250
250
|
test_files:
|