global_registry 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 1c876ff50d829edab59bb8618f8d9a4124a98c4c
4
- data.tar.gz: f8c89d43a06b421535f50e9ea573a51e943731da
2
+ SHA256:
3
+ metadata.gz: e93da0073c39cfe7e3eba14f4ab788b9c9597912b86924a96bb897f4ba493d6a
4
+ data.tar.gz: 6752d48b7e9f365a4a4ff3d8ae8d65499e44dcb8a2c1cc4a51d008c747439f7e
5
5
  SHA512:
6
- metadata.gz: df3d776f687217538074ba2ceb9858b8a6a8cf82960d13a283886af253553fc3a1e798e7af5bf82a38e888b567c9cc8aa4a92385197d3c87e36056af3e72000b
7
- data.tar.gz: f52bdad13304137d9be8bf785469b525fa4c5487511562322cbd97469017c824d8b7b30a450ade0add5f6348a251f91185299215dc6e8390dafc538b22747dcd
6
+ metadata.gz: f6bde8c52979ae1bc24297d0ba517bc55fc3fe2d524c295819516115ac80cfb49cce0c60957fa021d1f4f7a5631d01095d7a4f278b1c397ea87e1e13bdff8412
7
+ data.tar.gz: dd6d5a4659bbe3bd1fbf4bd81dd17f46b287534bad72bc07b382c7a5b050f057739f7f746cbd65f196a2493dd9eba0b8860653a01d0d3da7eb4060eea9ca7353
data/.travis.yml CHANGED
@@ -2,6 +2,6 @@ sudo: false
2
2
  cache: bundler
3
3
  language: ruby
4
4
  rvm:
5
- - 2.4.1
5
+ - 3.0.5
6
6
  script:
7
- - bundle exec rspec spec
7
+ - bundle exec rspec spec
@@ -121,11 +121,11 @@ module GlobalRegistry
121
121
  when 200..299
122
122
  Oj.load(response)
123
123
  when 400
124
- raise GlobalRegistry::BadRequest, response
124
+ raise GlobalRegistry::BadRequest.new(response)
125
125
  when 404
126
- raise GlobalRegistry::ResourceNotFound, response
126
+ raise GlobalRegistry::ResourceNotFound.new(response)
127
127
  when 500
128
- raise GlobalRegistry::InternalServerError, response
128
+ raise GlobalRegistry::InternalServerError.new(response)
129
129
  else
130
130
  puts response.inspect
131
131
  puts request.inspect
@@ -1,3 +1,3 @@
1
1
  module GlobalRegistry
2
- VERSION = '1.6.0'
2
+ VERSION = '1.7.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: global_registry
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Starcher
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-01 00:00:00.000000000 Z
11
+ date: 2023-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -134,7 +134,7 @@ files:
134
134
  homepage: ''
135
135
  licenses: []
136
136
  metadata: {}
137
- post_install_message:
137
+ post_install_message:
138
138
  rdoc_options: []
139
139
  require_paths:
140
140
  - lib
@@ -149,9 +149,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
151
  requirements: []
152
- rubyforge_project:
153
- rubygems_version: 2.6.11
154
- signing_key:
152
+ rubygems_version: 3.3.26
153
+ signing_key:
155
154
  specification_version: 4
156
155
  summary: Push and pull data from the Global Registry
157
156
  test_files: