pingram 1.0.5 → 1.0.6
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 +2 -2
- data/lib/pingram/api/members_api.rb +10 -10
- data/lib/pingram/api/numbers_api.rb +214 -0
- data/lib/pingram/api_client.rb +1 -1
- data/lib/pingram/client_wrapper.rb +10 -0
- data/lib/pingram/models/account_get_response.rb +19 -53
- data/lib/pingram/models/auto_join_get_response.rb +16 -16
- data/lib/pingram/models/auto_join_post_response.rb +16 -16
- data/lib/pingram/models/billing_post_response_body.rb +1 -1
- data/lib/pingram/models/get_members_response_inner.rb +27 -1
- data/lib/pingram/models/list_phone_numbers_response.rb +167 -0
- data/lib/pingram/models/list_phone_numbers_response_numbers_inner.rb +202 -0
- data/lib/pingram/models/order_phone_number_request.rb +166 -0
- data/lib/pingram/models/order_phone_number_response.rb +217 -0
- data/lib/pingram/models/organization.rb +74 -222
- data/lib/pingram/models/phone_verify_confirm_request.rb +190 -0
- data/lib/pingram/models/phone_verify_confirm_response.rb +164 -0
- data/lib/pingram/models/phone_verify_start_request.rb +190 -0
- data/lib/pingram/models/phone_verify_start_response.rb +164 -0
- data/lib/pingram/models/search_available_phone_numbers_response.rb +167 -0
- data/lib/pingram/models/search_available_phone_numbers_response_numbers_inner.rb +206 -0
- data/lib/pingram/models/sender_post_body.rb +2 -0
- data/lib/pingram/models/sender_post_body_sms.rb +15 -5
- data/lib/pingram/version.rb +1 -1
- data/lib/pingram.rb +11 -0
- data/vendor/bundle/ruby/3.2.0/cache/parallel-1.28.0.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-13.0.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/date-3.5.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/io-console-0.8.2/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/io-console-0.8.2/mkmf.log +3 -3
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/psych-5.3.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.8.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/stringio-3.2.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/gems/parallel-1.28.0/lib/parallel/version.rb +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/{parallel-1.27.0 → parallel-1.28.0}/lib/parallel.rb +11 -0
- data/vendor/bundle/ruby/3.2.0/specifications/{parallel-1.27.0.gemspec → parallel-1.28.0.gemspec} +4 -4
- metadata +18 -7
- data/vendor/bundle/ruby/3.2.0/cache/parallel-1.27.0.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/parallel-1.27.0/lib/parallel/version.rb +0 -4
- /data/vendor/bundle/ruby/3.2.0/gems/{parallel-1.27.0 → parallel-1.28.0}/MIT-LICENSE.txt +0 -0
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pingram
|
|
3
|
+
|
|
4
|
+
#Internal API for notification delivery and management
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.19.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module Pingram
|
|
17
|
+
# One available number returned from search
|
|
18
|
+
class SearchAvailablePhoneNumbersResponseNumbersInner < ApiModelBase
|
|
19
|
+
# E.164
|
|
20
|
+
attr_accessor :phone_number
|
|
21
|
+
|
|
22
|
+
attr_accessor :locality
|
|
23
|
+
|
|
24
|
+
attr_accessor :administrative_area
|
|
25
|
+
|
|
26
|
+
# e.g. local, toll_free
|
|
27
|
+
attr_accessor :phone_number_type
|
|
28
|
+
|
|
29
|
+
# e.g. sms, voice, mms
|
|
30
|
+
attr_accessor :features
|
|
31
|
+
|
|
32
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
33
|
+
def self.attribute_map
|
|
34
|
+
{
|
|
35
|
+
:'phone_number' => :'phoneNumber',
|
|
36
|
+
:'locality' => :'locality',
|
|
37
|
+
:'administrative_area' => :'administrativeArea',
|
|
38
|
+
:'phone_number_type' => :'phoneNumberType',
|
|
39
|
+
:'features' => :'features'
|
|
40
|
+
}
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
# Returns attribute mapping this model knows about
|
|
44
|
+
def self.acceptable_attribute_map
|
|
45
|
+
attribute_map
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# Returns all the JSON keys this model knows about
|
|
49
|
+
def self.acceptable_attributes
|
|
50
|
+
acceptable_attribute_map.values
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# Attribute type mapping.
|
|
54
|
+
def self.openapi_types
|
|
55
|
+
{
|
|
56
|
+
:'phone_number' => :'String',
|
|
57
|
+
:'locality' => :'String',
|
|
58
|
+
:'administrative_area' => :'String',
|
|
59
|
+
:'phone_number_type' => :'String',
|
|
60
|
+
:'features' => :'Array<String>'
|
|
61
|
+
}
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
# List of attributes with nullable: true
|
|
65
|
+
def self.openapi_nullable
|
|
66
|
+
Set.new([
|
|
67
|
+
])
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# Initializes the object
|
|
71
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
72
|
+
def initialize(attributes = {})
|
|
73
|
+
if (!attributes.is_a?(Hash))
|
|
74
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Pingram::SearchAvailablePhoneNumbersResponseNumbersInner` initialize method"
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
78
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
79
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
80
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
81
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Pingram::SearchAvailablePhoneNumbersResponseNumbersInner`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
82
|
+
end
|
|
83
|
+
h[k.to_sym] = v
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
if attributes.key?(:'phone_number')
|
|
87
|
+
self.phone_number = attributes[:'phone_number']
|
|
88
|
+
else
|
|
89
|
+
self.phone_number = nil
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
if attributes.key?(:'locality')
|
|
93
|
+
self.locality = attributes[:'locality']
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
if attributes.key?(:'administrative_area')
|
|
97
|
+
self.administrative_area = attributes[:'administrative_area']
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
if attributes.key?(:'phone_number_type')
|
|
101
|
+
self.phone_number_type = attributes[:'phone_number_type']
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
if attributes.key?(:'features')
|
|
105
|
+
if (value = attributes[:'features']).is_a?(Array)
|
|
106
|
+
self.features = value
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
112
|
+
# @return Array for valid properties with the reasons
|
|
113
|
+
def list_invalid_properties
|
|
114
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
115
|
+
invalid_properties = Array.new
|
|
116
|
+
if @phone_number.nil?
|
|
117
|
+
invalid_properties.push('invalid value for "phone_number", phone_number cannot be nil.')
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
invalid_properties
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
# Check to see if the all the properties in the model are valid
|
|
124
|
+
# @return true if the model is valid
|
|
125
|
+
def valid?
|
|
126
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
127
|
+
return false if @phone_number.nil?
|
|
128
|
+
true
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
# Custom attribute writer method with validation
|
|
132
|
+
# @param [Object] phone_number Value to be assigned
|
|
133
|
+
def phone_number=(phone_number)
|
|
134
|
+
if phone_number.nil?
|
|
135
|
+
fail ArgumentError, 'phone_number cannot be nil'
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
@phone_number = phone_number
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
# Checks equality by comparing each attribute.
|
|
142
|
+
# @param [Object] Object to be compared
|
|
143
|
+
def ==(o)
|
|
144
|
+
return true if self.equal?(o)
|
|
145
|
+
self.class == o.class &&
|
|
146
|
+
phone_number == o.phone_number &&
|
|
147
|
+
locality == o.locality &&
|
|
148
|
+
administrative_area == o.administrative_area &&
|
|
149
|
+
phone_number_type == o.phone_number_type &&
|
|
150
|
+
features == o.features
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
# @see the `==` method
|
|
154
|
+
# @param [Object] Object to be compared
|
|
155
|
+
def eql?(o)
|
|
156
|
+
self == o
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
# Calculates hash code according to all attributes.
|
|
160
|
+
# @return [Integer] Hash code
|
|
161
|
+
def hash
|
|
162
|
+
[phone_number, locality, administrative_area, phone_number_type, features].hash
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
# Builds the object from hash
|
|
166
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
167
|
+
# @return [Object] Returns the model itself
|
|
168
|
+
def self.build_from_hash(attributes)
|
|
169
|
+
return nil unless attributes.is_a?(Hash)
|
|
170
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
171
|
+
transformed_hash = {}
|
|
172
|
+
openapi_types.each_pair do |key, type|
|
|
173
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
174
|
+
transformed_hash["#{key}"] = nil
|
|
175
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
176
|
+
# check to ensure the input is an array given that the attribute
|
|
177
|
+
# is documented as an array but the input is not
|
|
178
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
179
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
180
|
+
end
|
|
181
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
182
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
183
|
+
end
|
|
184
|
+
end
|
|
185
|
+
new(transformed_hash)
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
# Returns the object in the form of hash
|
|
189
|
+
# @return [Hash] Returns the object in the form of hash
|
|
190
|
+
def to_hash
|
|
191
|
+
hash = {}
|
|
192
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
193
|
+
value = self.send(attr)
|
|
194
|
+
if value.nil?
|
|
195
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
196
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
hash[param] = _to_hash(value)
|
|
200
|
+
end
|
|
201
|
+
hash
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
end
|
|
@@ -15,12 +15,14 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module Pingram
|
|
17
17
|
class SenderPostBody < ApiModelBase
|
|
18
|
+
# @deprecated Use type instead
|
|
18
19
|
attr_accessor :notification_id
|
|
19
20
|
|
|
20
21
|
attr_accessor :user
|
|
21
22
|
|
|
22
23
|
attr_accessor :merge_tags
|
|
23
24
|
|
|
25
|
+
# @deprecated Use parameters instead
|
|
24
26
|
attr_accessor :replace
|
|
25
27
|
|
|
26
28
|
# ID of the notification type (e.g. \"welcome_email\"). Creates a new notification if it does not exist.
|
|
@@ -14,18 +14,22 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module Pingram
|
|
17
|
-
# Inline SMS content (message, autoReply).
|
|
17
|
+
# Inline SMS content (message, autoReply, from).
|
|
18
18
|
class SenderPostBodySms < ApiModelBase
|
|
19
19
|
# SMS body text.
|
|
20
20
|
attr_accessor :message
|
|
21
21
|
|
|
22
22
|
attr_accessor :auto_reply
|
|
23
23
|
|
|
24
|
+
# Override the sender phone number. Must be a verified number in your Telnyx account.
|
|
25
|
+
attr_accessor :from
|
|
26
|
+
|
|
24
27
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
25
28
|
def self.attribute_map
|
|
26
29
|
{
|
|
27
30
|
:'message' => :'message',
|
|
28
|
-
:'auto_reply' => :'autoReply'
|
|
31
|
+
:'auto_reply' => :'autoReply',
|
|
32
|
+
:'from' => :'from'
|
|
29
33
|
}
|
|
30
34
|
end
|
|
31
35
|
|
|
@@ -43,7 +47,8 @@ module Pingram
|
|
|
43
47
|
def self.openapi_types
|
|
44
48
|
{
|
|
45
49
|
:'message' => :'String',
|
|
46
|
-
:'auto_reply' => :'SenderPostBodySmsAutoReply'
|
|
50
|
+
:'auto_reply' => :'SenderPostBodySmsAutoReply',
|
|
51
|
+
:'from' => :'String'
|
|
47
52
|
}
|
|
48
53
|
end
|
|
49
54
|
|
|
@@ -76,6 +81,10 @@ module Pingram
|
|
|
76
81
|
if attributes.key?(:'auto_reply')
|
|
77
82
|
self.auto_reply = attributes[:'auto_reply']
|
|
78
83
|
end
|
|
84
|
+
|
|
85
|
+
if attributes.key?(:'from')
|
|
86
|
+
self.from = attributes[:'from']
|
|
87
|
+
end
|
|
79
88
|
end
|
|
80
89
|
|
|
81
90
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -99,7 +108,8 @@ module Pingram
|
|
|
99
108
|
return true if self.equal?(o)
|
|
100
109
|
self.class == o.class &&
|
|
101
110
|
message == o.message &&
|
|
102
|
-
auto_reply == o.auto_reply
|
|
111
|
+
auto_reply == o.auto_reply &&
|
|
112
|
+
from == o.from
|
|
103
113
|
end
|
|
104
114
|
|
|
105
115
|
# @see the `==` method
|
|
@@ -111,7 +121,7 @@ module Pingram
|
|
|
111
121
|
# Calculates hash code according to all attributes.
|
|
112
122
|
# @return [Integer] Hash code
|
|
113
123
|
def hash
|
|
114
|
-
[message, auto_reply].hash
|
|
124
|
+
[message, auto_reply, from].hash
|
|
115
125
|
end
|
|
116
126
|
|
|
117
127
|
# Builds the object from hash
|
data/lib/pingram/version.rb
CHANGED
data/lib/pingram.rb
CHANGED
|
@@ -125,6 +125,8 @@ require 'pingram/models/intercom_webhook_data_item_any_of_contacts_contacts_inne
|
|
|
125
125
|
require 'pingram/models/intercom_webhook_data_item_any_of_source'
|
|
126
126
|
require 'pingram/models/intercom_webhook_data_item_any_of_source_author'
|
|
127
127
|
require 'pingram/models/invite_post_response'
|
|
128
|
+
require 'pingram/models/list_phone_numbers_response'
|
|
129
|
+
require 'pingram/models/list_phone_numbers_response_numbers_inner'
|
|
128
130
|
require 'pingram/models/log_query_post_body'
|
|
129
131
|
require 'pingram/models/logs_bulk_request'
|
|
130
132
|
require 'pingram/models/logs_get_response'
|
|
@@ -141,16 +143,24 @@ require 'pingram/models/notification_create_request'
|
|
|
141
143
|
require 'pingram/models/notification_patch_request'
|
|
142
144
|
require 'pingram/models/notification_patch_request_deduplication'
|
|
143
145
|
require 'pingram/models/notification_patch_request_throttling'
|
|
146
|
+
require 'pingram/models/order_phone_number_request'
|
|
147
|
+
require 'pingram/models/order_phone_number_response'
|
|
144
148
|
require 'pingram/models/organization'
|
|
145
149
|
require 'pingram/models/organization_usage'
|
|
146
150
|
require 'pingram/models/organization_usage_history'
|
|
147
151
|
require 'pingram/models/organization_usage_history_items_inner'
|
|
152
|
+
require 'pingram/models/phone_verify_confirm_request'
|
|
153
|
+
require 'pingram/models/phone_verify_confirm_response'
|
|
154
|
+
require 'pingram/models/phone_verify_start_request'
|
|
155
|
+
require 'pingram/models/phone_verify_start_response'
|
|
148
156
|
require 'pingram/models/post_email_test_request'
|
|
149
157
|
require 'pingram/models/post_email_test_response'
|
|
150
158
|
require 'pingram/models/post_senders_request_body'
|
|
151
159
|
require 'pingram/models/post_user_request'
|
|
152
160
|
require 'pingram/models/push_settings_fcm_put_request'
|
|
153
161
|
require 'pingram/models/push_settings_fcm_response'
|
|
162
|
+
require 'pingram/models/search_available_phone_numbers_response'
|
|
163
|
+
require 'pingram/models/search_available_phone_numbers_response_numbers_inner'
|
|
154
164
|
require 'pingram/models/sender_post_body'
|
|
155
165
|
require 'pingram/models/sender_post_body_call'
|
|
156
166
|
require 'pingram/models/sender_post_body_email'
|
|
@@ -206,6 +216,7 @@ require 'pingram/api/insights_api'
|
|
|
206
216
|
require 'pingram/api/keys_api'
|
|
207
217
|
require 'pingram/api/logs_api'
|
|
208
218
|
require 'pingram/api/members_api'
|
|
219
|
+
require 'pingram/api/numbers_api'
|
|
209
220
|
require 'pingram/api/organization_api'
|
|
210
221
|
require 'pingram/api/push_settings_api'
|
|
211
222
|
require 'pingram/api/sender_api'
|
|
Binary file
|
|
@@ -3,10 +3,10 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-mldkl9 sitelibdir\=./.gem.20260512-2479-mldkl9 clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-mldkl9 sitelibdir\=./.gem.20260512-2479-mldkl9
|
|
10
10
|
compiling breakpoint.c
|
|
11
11
|
compiling byebug.c
|
|
12
12
|
byebug.c: In function ‘check_started’:
|
|
@@ -35,8 +35,8 @@ compiling threads.c
|
|
|
35
35
|
linking shared-object byebug/byebug.so
|
|
36
36
|
|
|
37
37
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
38
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
39
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
|
38
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-mldkl9 sitelibdir\=./.gem.20260512-2479-mldkl9 install
|
|
39
|
+
/usr/bin/install -c -m 0755 byebug.so ./.gem.20260512-2479-mldkl9/byebug
|
|
40
40
|
|
|
41
41
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
42
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
42
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-mldkl9 sitelibdir\=./.gem.20260512-2479-mldkl9 clean
|
|
@@ -6,10 +6,10 @@ checking for altzone in time.h with -Werror... no
|
|
|
6
6
|
creating Makefile
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-gfsr3h sitelibdir\=./.gem.20260512-2479-gfsr3h clean
|
|
10
10
|
|
|
11
11
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
12
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
12
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-gfsr3h sitelibdir\=./.gem.20260512-2479-gfsr3h
|
|
13
13
|
compiling date_core.c
|
|
14
14
|
compiling date_parse.c
|
|
15
15
|
compiling date_strftime.c
|
|
@@ -17,8 +17,8 @@ compiling date_strptime.c
|
|
|
17
17
|
linking shared-object date_core.so
|
|
18
18
|
|
|
19
19
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
20
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
21
|
-
/usr/bin/install -c -m 0755 date_core.so ./.gem.
|
|
20
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-gfsr3h sitelibdir\=./.gem.20260512-2479-gfsr3h install
|
|
21
|
+
/usr/bin/install -c -m 0755 date_core.so ./.gem.20260512-2479-gfsr3h
|
|
22
22
|
|
|
23
23
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
24
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
24
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-gfsr3h sitelibdir\=./.gem.20260512-2479-gfsr3h clean
|
|
@@ -16,16 +16,16 @@ checking for ttyname_r()... yes
|
|
|
16
16
|
creating Makefile
|
|
17
17
|
|
|
18
18
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console
|
|
19
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
19
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-fdgkeh sitelibdir\=./.gem.20260512-2479-fdgkeh clean
|
|
20
20
|
|
|
21
21
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console
|
|
22
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
22
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-fdgkeh sitelibdir\=./.gem.20260512-2479-fdgkeh
|
|
23
23
|
compiling console.c
|
|
24
24
|
linking shared-object io/console.so
|
|
25
25
|
|
|
26
26
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console
|
|
27
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
28
|
-
/usr/bin/install -c -m 0755 console.so ./.gem.
|
|
27
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-fdgkeh sitelibdir\=./.gem.20260512-2479-fdgkeh install
|
|
28
|
+
/usr/bin/install -c -m 0755 console.so ./.gem.20260512-2479-fdgkeh/io
|
|
29
29
|
|
|
30
30
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console
|
|
31
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
31
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-fdgkeh sitelibdir\=./.gem.20260512-2479-fdgkeh clean
|
|
@@ -98,7 +98,7 @@ checked program was:
|
|
|
98
98
|
/* end */
|
|
99
99
|
|
|
100
100
|
LD_LIBRARY_PATH=.:/opt/hostedtoolcache/Ruby/3.2.11/x64/lib "gcc -o conftest -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/ruby/backward -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0 -I. -DENABLE_PATH_CHECK=0 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wundef -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -lruby -lm -lpthread -lc"
|
|
101
|
-
/usr/bin/ld: /tmp/
|
|
101
|
+
/usr/bin/ld: /tmp/cceDWOmi.o: in function `t':
|
|
102
102
|
/home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console/conftest.c:17:(.text+0xb): undefined reference to `rb_io_path'
|
|
103
103
|
collect2: error: ld returned 1 exit status
|
|
104
104
|
checked program was:
|
|
@@ -208,7 +208,7 @@ checked program was:
|
|
|
208
208
|
/* end */
|
|
209
209
|
|
|
210
210
|
LD_LIBRARY_PATH=.:/opt/hostedtoolcache/Ruby/3.2.11/x64/lib "gcc -o conftest -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/ruby/backward -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0 -I. -DENABLE_PATH_CHECK=0 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wundef -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -lruby -lm -lpthread -lc"
|
|
211
|
-
/usr/bin/ld: /tmp/
|
|
211
|
+
/usr/bin/ld: /tmp/cc5FKwYF.o: in function `t':
|
|
212
212
|
/home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console/conftest.c:17:(.text+0xb): undefined reference to `rb_io_closed_p'
|
|
213
213
|
collect2: error: ld returned 1 exit status
|
|
214
214
|
checked program was:
|
|
@@ -268,7 +268,7 @@ checked program was:
|
|
|
268
268
|
/* end */
|
|
269
269
|
|
|
270
270
|
LD_LIBRARY_PATH=.:/opt/hostedtoolcache/Ruby/3.2.11/x64/lib "gcc -o conftest -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/ruby/backward -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0 -I. -DENABLE_PATH_CHECK=0 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wundef -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -lruby -lm -lpthread -lc"
|
|
271
|
-
/usr/bin/ld: /tmp/
|
|
271
|
+
/usr/bin/ld: /tmp/cciSM8Bg.o: in function `t':
|
|
272
272
|
/home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.8.2/ext/io/console/conftest.c:17:(.text+0xb): undefined reference to `rb_io_open_descriptor'
|
|
273
273
|
collect2: error: ld returned 1 exit status
|
|
274
274
|
checked program was:
|
|
@@ -3,10 +3,10 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-3k0mht sitelibdir\=./.gem.20260512-2479-3k0mht clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-3k0mht sitelibdir\=./.gem.20260512-2479-3k0mht
|
|
10
10
|
compiling adj_matrix.c
|
|
11
11
|
adj_matrix.c: In function ‘adj_matrix_default’:
|
|
12
12
|
adj_matrix.c:82:12: warning: old-style function definition [-Wold-style-definition]
|
|
@@ -22,8 +22,8 @@ compiling jaro_winkler.c
|
|
|
22
22
|
linking shared-object jaro_winkler/jaro_winkler_ext.so
|
|
23
23
|
|
|
24
24
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
25
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
26
|
-
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.
|
|
25
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-3k0mht sitelibdir\=./.gem.20260512-2479-3k0mht install
|
|
26
|
+
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20260512-2479-3k0mht/jaro_winkler
|
|
27
27
|
|
|
28
28
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
29
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
29
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-3k0mht sitelibdir\=./.gem.20260512-2479-3k0mht clean
|
|
@@ -3,13 +3,13 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-iigs8l sitelibdir\=./.gem.20260512-2479-iigs8l clean
|
|
7
7
|
cd libyaml && make clean
|
|
8
8
|
/bin/sh: 1: cd: can't cd to libyaml
|
|
9
9
|
make: [Makefile:283: clean-so] Error 2 (ignored)
|
|
10
10
|
|
|
11
11
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych
|
|
12
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
12
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-iigs8l sitelibdir\=./.gem.20260512-2479-iigs8l
|
|
13
13
|
compiling psych.c
|
|
14
14
|
compiling psych_emitter.c
|
|
15
15
|
compiling psych_parser.c
|
|
@@ -18,11 +18,11 @@ compiling psych_yaml_tree.c
|
|
|
18
18
|
linking shared-object psych.so
|
|
19
19
|
|
|
20
20
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych
|
|
21
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
22
|
-
/usr/bin/install -c -m 0755 psych.so ./.gem.
|
|
21
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-iigs8l sitelibdir\=./.gem.20260512-2479-iigs8l install
|
|
22
|
+
/usr/bin/install -c -m 0755 psych.so ./.gem.20260512-2479-iigs8l
|
|
23
23
|
|
|
24
24
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.3.1/ext/psych
|
|
25
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
25
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-iigs8l sitelibdir\=./.gem.20260512-2479-iigs8l clean
|
|
26
26
|
cd libyaml && make clean
|
|
27
27
|
/bin/sh: 1: cd: can't cd to libyaml
|
|
28
28
|
make: [Makefile:283: clean-so] Error 2 (ignored)
|
|
@@ -3,16 +3,16 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-yizcqo sitelibdir\=./.gem.20260512-2479-yizcqo clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-yizcqo sitelibdir\=./.gem.20260512-2479-yizcqo
|
|
10
10
|
compiling cparse.c
|
|
11
11
|
linking shared-object racc/cparse.so
|
|
12
12
|
|
|
13
13
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
14
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
15
|
-
/usr/bin/install -c -m 0755 cparse.so ./.gem.
|
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-yizcqo sitelibdir\=./.gem.20260512-2479-yizcqo install
|
|
15
|
+
/usr/bin/install -c -m 0755 cparse.so ./.gem.20260512-2479-yizcqo/racc
|
|
16
16
|
|
|
17
17
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
18
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
18
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-yizcqo sitelibdir\=./.gem.20260512-2479-yizcqo clean
|
|
@@ -4,16 +4,16 @@ checking for rb_io_mode_t in ruby/io.h... no
|
|
|
4
4
|
creating Makefile
|
|
5
5
|
|
|
6
6
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio
|
|
7
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
7
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-pcpr9a sitelibdir\=./.gem.20260512-2479-pcpr9a clean
|
|
8
8
|
|
|
9
9
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio
|
|
10
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
10
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-pcpr9a sitelibdir\=./.gem.20260512-2479-pcpr9a
|
|
11
11
|
compiling stringio.c
|
|
12
12
|
linking shared-object stringio.so
|
|
13
13
|
|
|
14
14
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio
|
|
15
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
16
|
-
/usr/bin/install -c -m 0755 stringio.so ./.gem.
|
|
15
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-pcpr9a sitelibdir\=./.gem.20260512-2479-pcpr9a install
|
|
16
|
+
/usr/bin/install -c -m 0755 stringio.so ./.gem.20260512-2479-pcpr9a
|
|
17
17
|
|
|
18
18
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/stringio-3.2.0/ext/stringio
|
|
19
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
19
|
+
make DESTDIR\= sitearchdir\=./.gem.20260512-2479-pcpr9a sitelibdir\=./.gem.20260512-2479-pcpr9a clean
|
|
@@ -15,6 +15,17 @@ module Parallel
|
|
|
15
15
|
super()
|
|
16
16
|
@value = value
|
|
17
17
|
end
|
|
18
|
+
|
|
19
|
+
# marshal_dump that is used for ruby exceptions
|
|
20
|
+
# avoid dumping the cause since nobody needs that and it can include undumpable exceptions
|
|
21
|
+
def _dump(_depth)
|
|
22
|
+
Marshal.dump(@value)
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
# marshal_load that is used for ruby exceptions
|
|
26
|
+
def self._load(data)
|
|
27
|
+
new(Marshal.load(data))
|
|
28
|
+
end
|
|
18
29
|
end
|
|
19
30
|
|
|
20
31
|
class Kill < Break
|
data/vendor/bundle/ruby/3.2.0/specifications/{parallel-1.27.0.gemspec → parallel-1.28.0.gemspec}
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: parallel 1.
|
|
2
|
+
# stub: parallel 1.28.0 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "parallel".freeze
|
|
6
|
-
s.version = "1.
|
|
6
|
+
s.version = "1.28.0"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
|
-
s.metadata = { "bug_tracker_uri" => "https://github.com/grosser/parallel/issues", "documentation_uri" => "https://github.com/grosser/parallel/blob/v1.
|
|
9
|
+
s.metadata = { "bug_tracker_uri" => "https://github.com/grosser/parallel/issues", "documentation_uri" => "https://github.com/grosser/parallel/blob/v1.28.0/Readme.md", "source_code_uri" => "https://github.com/grosser/parallel/tree/v1.28.0", "wiki_uri" => "https://github.com/grosser/parallel/wiki" } if s.respond_to? :metadata=
|
|
10
10
|
s.require_paths = ["lib".freeze]
|
|
11
11
|
s.authors = ["Michael Grosser".freeze]
|
|
12
|
-
s.date = "
|
|
12
|
+
s.date = "2026-04-02"
|
|
13
13
|
s.email = "michael@grosser.it".freeze
|
|
14
14
|
s.homepage = "https://github.com/grosser/parallel".freeze
|
|
15
15
|
s.licenses = ["MIT".freeze]
|