patch_ruby 2.6.0 → 2.6.1
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/Gemfile.lock +5 -1
- data/lib/patch_ruby/api_client.rb +1 -1
- data/lib/patch_ruby/version.rb +1 -1
- data/patch_ruby.gemspec +2 -0
- metadata +31 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 344fd08a855b75b4d36fc347a2bf06b119c30423a2199c09af8b3b444709db8e
|
|
4
|
+
data.tar.gz: 5c8be54bd9503a86baa5cc71b46f1fbcef26fb37526c336216200fb422c76611
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84f33d02271ccb58ff6ec72d483161c9dae2bb35656abd8c24c12e8c457751d020383458c7a92f0be553c6f1b7a8eb69f84b861726e4f2b00db1ad1021e50dcb
|
|
7
|
+
data.tar.gz: e6b10cb9c1f4dff057be2f2301b2fe21c17cf082a411d97faf7735e9a515bda759043ec12149a7fa94870453aa9d03c8fd9779ede2150ed90da3efe68c41133a
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
patch_ruby (2.6.
|
|
4
|
+
patch_ruby (2.6.1)
|
|
5
5
|
typhoeus (~> 1.0, >= 1.0.1)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -28,6 +28,8 @@ GEM
|
|
|
28
28
|
jaro_winkler (1.5.6)
|
|
29
29
|
method_source (1.0.0)
|
|
30
30
|
minitest (5.18.0)
|
|
31
|
+
mutex_m (0.3.0)
|
|
32
|
+
observer (0.1.2)
|
|
31
33
|
parallel (1.27.0)
|
|
32
34
|
parser (3.3.10.0)
|
|
33
35
|
ast (~> 2.4.1)
|
|
@@ -84,6 +86,8 @@ PLATFORMS
|
|
|
84
86
|
|
|
85
87
|
DEPENDENCIES
|
|
86
88
|
factory_bot (~> 6.2)
|
|
89
|
+
mutex_m
|
|
90
|
+
observer
|
|
87
91
|
patch_ruby!
|
|
88
92
|
pry
|
|
89
93
|
pry-byebug
|
|
@@ -31,7 +31,7 @@ module Patch
|
|
|
31
31
|
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
|
|
32
32
|
def initialize(config = Configuration.default)
|
|
33
33
|
@config = config
|
|
34
|
-
@user_agent = "patch-ruby/2.6.
|
|
34
|
+
@user_agent = "patch-ruby/2.6.1"
|
|
35
35
|
@default_headers = {
|
|
36
36
|
'Content-Type' => 'application/json',
|
|
37
37
|
'User-Agent' => @user_agent
|
data/lib/patch_ruby/version.rb
CHANGED
data/patch_ruby.gemspec
CHANGED
|
@@ -39,6 +39,8 @@ Gem::Specification.new do |s|
|
|
|
39
39
|
# Start custom
|
|
40
40
|
s.add_development_dependency 'factory_bot', '~> 6.2'
|
|
41
41
|
s.add_development_dependency 'pry'
|
|
42
|
+
s.add_development_dependency 'mutex_m' # Required for Ruby 3.4+
|
|
43
|
+
s.add_development_dependency 'observer' # Required for Ruby 3.4+
|
|
42
44
|
# End custom
|
|
43
45
|
|
|
44
46
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: patch_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patch Technology
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -78,6 +78,34 @@ dependencies:
|
|
|
78
78
|
- - ">="
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
80
|
version: '0'
|
|
81
|
+
- !ruby/object:Gem::Dependency
|
|
82
|
+
name: mutex_m
|
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '0'
|
|
88
|
+
type: :development
|
|
89
|
+
prerelease: false
|
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
91
|
+
requirements:
|
|
92
|
+
- - ">="
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: '0'
|
|
95
|
+
- !ruby/object:Gem::Dependency
|
|
96
|
+
name: observer
|
|
97
|
+
requirement: !ruby/object:Gem::Requirement
|
|
98
|
+
requirements:
|
|
99
|
+
- - ">="
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: '0'
|
|
102
|
+
type: :development
|
|
103
|
+
prerelease: false
|
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
+
requirements:
|
|
106
|
+
- - ">="
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: '0'
|
|
81
109
|
description: Ruby wrapper for the Patch API
|
|
82
110
|
email:
|
|
83
111
|
- developers@usepatch.com
|
|
@@ -183,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
183
211
|
- !ruby/object:Gem::Version
|
|
184
212
|
version: '0'
|
|
185
213
|
requirements: []
|
|
186
|
-
rubygems_version: 3.
|
|
214
|
+
rubygems_version: 3.5.22
|
|
187
215
|
signing_key:
|
|
188
216
|
specification_version: 4
|
|
189
217
|
summary: Ruby wrapper for the Patch API
|