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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9562909be8c0ef4c54e8da94d251e44ecc5dc9f6a2f498622405afb225575d12
4
- data.tar.gz: 6b0598714d0d53e7e18a5e0cd5ca36b5ebafa9d85a7325df966e4f84f678c5a6
3
+ metadata.gz: b5900b6d991cbb35f8f24586a4159c5e20a42bf7eb084c896a1e03d2fd88d393
4
+ data.tar.gz: 3bc765fa4be89779be7e70e90d64827281057a1857b2fa6d6bdf7d6473561c19
5
5
  SHA512:
6
- metadata.gz: 1c126d6a58305353b2e048447e6811a4b466d55fd3491a81eebe35654fee4bbb4799ed9b89d6a18ee6b92687034eeafaac30f2855ec4c6761db9e97fec8e9f3b
7
- data.tar.gz: '093b700f43b9992a84193b1a953c43b3db1632c35dc72ddcf6acd6ef71eaec6c55635cd859b372e37a2ebe27a0204f71037abb040f377f32bb59b3670076257d'
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
  # ![](https://raw.github.com/aptible/straptible/master/lib/straptible/rails/templates/public.api/icon-60px.png) Aptible::Resource
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/aptible-resource.png)](https://rubygems.org/gems/aptible-resource)
4
- [![Build Status](https://travis-ci.org/aptible/aptible-resource.png?branch=master)](https://travis-ci.org/aptible/aptible-resource)
5
4
  [![Dependency Status](https://gemnasium.com/aptible/aptible-resource.png)](https://gemnasium.com/aptible/aptible-resource)
6
5
 
7
6
  Foundation classes for Aptible resource server gems.
@@ -1,4 +1,5 @@
1
1
  require 'fridge'
2
+ require 'logger'
2
3
  require 'active_support'
3
4
  require 'active_support/inflector'
4
5
  require 'active_support/core_ext'
@@ -1,5 +1,5 @@
1
1
  module Aptible
2
2
  module Resource
3
- VERSION = '1.1.2'.freeze
3
+ VERSION = '1.1.3'.freeze
4
4
  end
5
5
  end
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.2
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: 2023-12-07 00:00:00.000000000 Z
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:
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- sudo: false
2
-
3
- rvm:
4
- - "2.2"
5
- - "2.3"
6
- - "2.6"
7
- - "2.7"