apiverve_maze 1.2.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 +7 -0
- data/LICENSE +21 -0
- data/README.md +1146 -0
- data/lib/apiverve/client.rb +184 -0
- data/lib/apiverve_maze/client.rb +188 -0
- data/lib/apiverve_maze.rb +9 -0
- metadata +98 -0
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "faraday"
|
|
4
|
+
require "faraday/multipart"
|
|
5
|
+
require "json"
|
|
6
|
+
|
|
7
|
+
module APIVerve
|
|
8
|
+
module Maze
|
|
9
|
+
# Client for the Maze Generator API
|
|
10
|
+
#
|
|
11
|
+
# @example Basic usage
|
|
12
|
+
# client = APIVerve::Maze::Client.new(api_key: "your_api_key")
|
|
13
|
+
# response = client.execute({ width: 15, height: 15, difficulty: "medium", image: true, solutionImage: true })
|
|
14
|
+
# puts response
|
|
15
|
+
#
|
|
16
|
+
# @see https://apiverve.com/marketplace/maze?utm_source=ruby&utm_medium=readme
|
|
17
|
+
class Client
|
|
18
|
+
BASE_URL = "https://api.apiverve.com/v1/maze"
|
|
19
|
+
DEFAULT_TIMEOUT = 30
|
|
20
|
+
|
|
21
|
+
# Validation rules for parameters
|
|
22
|
+
VALIDATION_RULES = { 'width' => { type: 'integer', required: false, min: 5, max: 50 }, 'height' => { type: 'integer', required: false, min: 5, max: 50 }, 'difficulty' => { type: 'string', required: false }, 'image' => { type: 'boolean', required: false }, 'solutionImage' => { type: 'boolean', required: false } }
|
|
23
|
+
|
|
24
|
+
# Format validation patterns
|
|
25
|
+
FORMAT_PATTERNS = {
|
|
26
|
+
'email' => /^[^\s@]+@[^\s@]+\.[^\s@]+$/,
|
|
27
|
+
'url' => /^https?:\/\/.+/,
|
|
28
|
+
'ip' => /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$|^([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$/,
|
|
29
|
+
'date' => /^\d{4}-\d{2}-\d{2}$/,
|
|
30
|
+
'hexColor' => /^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/
|
|
31
|
+
}.freeze
|
|
32
|
+
|
|
33
|
+
# Initialize the client
|
|
34
|
+
#
|
|
35
|
+
# @param api_key [String] Your APIVerve API key
|
|
36
|
+
# @param timeout [Integer] Request timeout in seconds (default: 30)
|
|
37
|
+
# @param debug [Boolean] Enable debug logging (default: false)
|
|
38
|
+
# @raise [ArgumentError] If API key is invalid
|
|
39
|
+
def initialize(api_key:, timeout: DEFAULT_TIMEOUT, debug: false)
|
|
40
|
+
validate_api_key!(api_key)
|
|
41
|
+
|
|
42
|
+
@api_key = api_key
|
|
43
|
+
@timeout = timeout
|
|
44
|
+
@debug = debug
|
|
45
|
+
|
|
46
|
+
@connection = Faraday.new(url: BASE_URL) do |conn|
|
|
47
|
+
conn.request :multipart
|
|
48
|
+
conn.request :url_encoded
|
|
49
|
+
conn.adapter Faraday.default_adapter
|
|
50
|
+
conn.options.timeout = @timeout
|
|
51
|
+
conn.headers["x-api-key"] = @api_key
|
|
52
|
+
conn.headers["auth-mode"] = "rubygems-package"
|
|
53
|
+
conn.headers["Content-Type"] = "application/json"
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# Execute the API request
|
|
58
|
+
#
|
|
59
|
+
# @param params [Hash] Query parameters or request body
|
|
60
|
+
# @return [Hash] API response
|
|
61
|
+
# @raise [APIError] If the request fails
|
|
62
|
+
# @raise [ValidationError] If parameter validation fails
|
|
63
|
+
def execute(params = {})
|
|
64
|
+
validate_params!(params)
|
|
65
|
+
|
|
66
|
+
log("Making GET request to #{BASE_URL}")
|
|
67
|
+
log("Parameters: #{params.inspect}") if params.any?
|
|
68
|
+
|
|
69
|
+
response = @connection.get do |req|
|
|
70
|
+
params.each { |k, v| req.params[k.to_s] = v }
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
handle_response(response)
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
private
|
|
77
|
+
|
|
78
|
+
def validate_api_key!(api_key)
|
|
79
|
+
raise ArgumentError, "API key is required. Get your API key at: https://apiverve.com" if api_key.nil? || api_key.strip.empty?
|
|
80
|
+
|
|
81
|
+
unless api_key.match?(/^[a-zA-Z0-9_-]+$/)
|
|
82
|
+
raise ArgumentError, "Invalid API key format. API key should only contain letters, numbers, hyphens, and underscores."
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
def validate_params!(params)
|
|
87
|
+
return if VALIDATION_RULES.empty?
|
|
88
|
+
|
|
89
|
+
errors = []
|
|
90
|
+
|
|
91
|
+
VALIDATION_RULES.each do |param_name, rules|
|
|
92
|
+
value = params[param_name.to_sym] || params[param_name]
|
|
93
|
+
|
|
94
|
+
# Check required
|
|
95
|
+
if rules[:required] && (value.nil? || value.to_s.empty?)
|
|
96
|
+
errors << "Required parameter [#{param_name}] is missing."
|
|
97
|
+
next
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
next if value.nil?
|
|
101
|
+
|
|
102
|
+
case rules[:type]
|
|
103
|
+
when "integer", "number"
|
|
104
|
+
begin
|
|
105
|
+
num_value = rules[:type] == "number" ? Float(value) : Integer(value)
|
|
106
|
+
errors << "Parameter [#{param_name}] must be at least #{rules[:min]}." if rules[:min] && num_value < rules[:min]
|
|
107
|
+
errors << "Parameter [#{param_name}] must be at most #{rules[:max]}." if rules[:max] && num_value > rules[:max]
|
|
108
|
+
rescue ArgumentError, TypeError
|
|
109
|
+
errors << "Parameter [#{param_name}] must be a valid #{rules[:type]}."
|
|
110
|
+
end
|
|
111
|
+
when "string"
|
|
112
|
+
unless value.is_a?(String)
|
|
113
|
+
errors << "Parameter [#{param_name}] must be a string."
|
|
114
|
+
next
|
|
115
|
+
end
|
|
116
|
+
errors << "Parameter [#{param_name}] must be at least #{rules[:min_length]} characters." if rules[:min_length] && value.length < rules[:min_length]
|
|
117
|
+
errors << "Parameter [#{param_name}] must be at most #{rules[:max_length]} characters." if rules[:max_length] && value.length > rules[:max_length]
|
|
118
|
+
|
|
119
|
+
if rules[:format] && FORMAT_PATTERNS[rules[:format]]
|
|
120
|
+
unless value.match?(FORMAT_PATTERNS[rules[:format]])
|
|
121
|
+
errors << "Parameter [#{param_name}] must be a valid #{rules[:format]}."
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
when "boolean"
|
|
125
|
+
unless [true, false, "true", "false"].include?(value)
|
|
126
|
+
errors << "Parameter [#{param_name}] must be a boolean."
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
# Enum validation
|
|
131
|
+
if rules[:enum] && !rules[:enum].include?(value)
|
|
132
|
+
errors << "Parameter [#{param_name}] must be one of: #{rules[:enum].join(', ')}."
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
raise ValidationError, errors unless errors.empty?
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
def handle_response(response)
|
|
140
|
+
log("Response status: #{response.status}")
|
|
141
|
+
|
|
142
|
+
data = JSON.parse(response.body)
|
|
143
|
+
|
|
144
|
+
if data["status"] == "error"
|
|
145
|
+
raise APIError.new(data["error"] || "Unknown API error", response.status, data)
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
unless response.success?
|
|
149
|
+
raise APIError.new(data["error"] || "HTTP #{response.status} error", response.status, data)
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
log("Request successful")
|
|
153
|
+
data
|
|
154
|
+
rescue JSON::ParserError => e
|
|
155
|
+
raise APIError.new("Invalid JSON response: #{e.message}", response.status)
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
def log(message)
|
|
159
|
+
puts "[APIVerve::Maze] #{message}" if @debug
|
|
160
|
+
end
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
# Custom error class for API errors
|
|
164
|
+
class APIError < StandardError
|
|
165
|
+
attr_reader :status_code, :response
|
|
166
|
+
|
|
167
|
+
def initialize(message, status_code = nil, response = nil)
|
|
168
|
+
@status_code = status_code
|
|
169
|
+
@response = response
|
|
170
|
+
super(message)
|
|
171
|
+
end
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
# Custom error class for validation errors
|
|
175
|
+
class ValidationError < StandardError
|
|
176
|
+
attr_reader :errors
|
|
177
|
+
|
|
178
|
+
def initialize(errors)
|
|
179
|
+
@errors = errors
|
|
180
|
+
super("Validation failed: #{errors.join(' ')}")
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
end
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "faraday"
|
|
4
|
+
require "faraday/multipart"
|
|
5
|
+
require "json"
|
|
6
|
+
|
|
7
|
+
module APIVerve
|
|
8
|
+
module Maze
|
|
9
|
+
# Client for the Maze Generator API
|
|
10
|
+
#
|
|
11
|
+
# @example Basic usage
|
|
12
|
+
# client = APIVerve::Maze::Client.new(api_key: "your_api_key")
|
|
13
|
+
# response = client.execute({ width: 15, height: 15, difficulty: "medium" })
|
|
14
|
+
# puts response
|
|
15
|
+
#
|
|
16
|
+
# @see https://apiverve.com/marketplace/maze?utm_source=ruby&utm_medium=readme
|
|
17
|
+
class Client
|
|
18
|
+
BASE_URL = "https://api.apiverve.com/v1/maze"
|
|
19
|
+
DEFAULT_TIMEOUT = 30
|
|
20
|
+
|
|
21
|
+
# Validation rules for parameters
|
|
22
|
+
VALIDATION_RULES = {
|
|
23
|
+
'width' => { type: 'integer', required: false, min: 5, max: 50 },
|
|
24
|
+
'height' => { type: 'integer', required: false, min: 5, max: 50 },
|
|
25
|
+
'difficulty' => { type: 'string', required: false }
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
# Format validation patterns
|
|
29
|
+
FORMAT_PATTERNS = {
|
|
30
|
+
'email' => /^[^\s@]+@[^\s@]+\.[^\s@]+$/,
|
|
31
|
+
'url' => /^https?:\/\/.+/,
|
|
32
|
+
'ip' => /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$|^([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$/,
|
|
33
|
+
'date' => /^\d{4}-\d{2}-\d{2}$/,
|
|
34
|
+
'hexColor' => /^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/
|
|
35
|
+
}.freeze
|
|
36
|
+
|
|
37
|
+
# Initialize the client
|
|
38
|
+
#
|
|
39
|
+
# @param api_key [String] Your APIVerve API key
|
|
40
|
+
# @param timeout [Integer] Request timeout in seconds (default: 30)
|
|
41
|
+
# @param debug [Boolean] Enable debug logging (default: false)
|
|
42
|
+
# @raise [ArgumentError] If API key is invalid
|
|
43
|
+
def initialize(api_key:, timeout: DEFAULT_TIMEOUT, debug: false)
|
|
44
|
+
validate_api_key!(api_key)
|
|
45
|
+
|
|
46
|
+
@api_key = api_key
|
|
47
|
+
@timeout = timeout
|
|
48
|
+
@debug = debug
|
|
49
|
+
|
|
50
|
+
@connection = Faraday.new(url: BASE_URL) do |conn|
|
|
51
|
+
conn.request :multipart
|
|
52
|
+
conn.request :url_encoded
|
|
53
|
+
conn.adapter Faraday.default_adapter
|
|
54
|
+
conn.options.timeout = @timeout
|
|
55
|
+
conn.headers["x-api-key"] = @api_key
|
|
56
|
+
conn.headers["auth-mode"] = "rubygems-package"
|
|
57
|
+
conn.headers["Content-Type"] = "application/json"
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Execute the API request
|
|
62
|
+
#
|
|
63
|
+
# @param params [Hash] Query parameters or request body
|
|
64
|
+
# @return [Hash] API response
|
|
65
|
+
# @raise [APIError] If the request fails
|
|
66
|
+
# @raise [ValidationError] If parameter validation fails
|
|
67
|
+
def execute(params = {})
|
|
68
|
+
validate_params!(params)
|
|
69
|
+
|
|
70
|
+
log("Making GET request to #{BASE_URL}")
|
|
71
|
+
log("Parameters: #{params.inspect}") if params.any?
|
|
72
|
+
|
|
73
|
+
response = @connection.get do |req|
|
|
74
|
+
params.each { |k, v| req.params[k.to_s] = v }
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
handle_response(response)
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
private
|
|
81
|
+
|
|
82
|
+
def validate_api_key!(api_key)
|
|
83
|
+
raise ArgumentError, "API key is required. Get your API key at: https://apiverve.com" if api_key.nil? || api_key.strip.empty?
|
|
84
|
+
|
|
85
|
+
unless api_key.match?(/^[a-zA-Z0-9_-]+$/)
|
|
86
|
+
raise ArgumentError, "Invalid API key format. API key should only contain letters, numbers, hyphens, and underscores."
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def validate_params!(params)
|
|
91
|
+
return if VALIDATION_RULES.empty?
|
|
92
|
+
|
|
93
|
+
errors = []
|
|
94
|
+
|
|
95
|
+
VALIDATION_RULES.each do |param_name, rules|
|
|
96
|
+
value = params[param_name.to_sym] || params[param_name]
|
|
97
|
+
|
|
98
|
+
# Check required
|
|
99
|
+
if rules[:required] && (value.nil? || value.to_s.empty?)
|
|
100
|
+
errors << "Required parameter [#{param_name}] is missing."
|
|
101
|
+
next
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
next if value.nil?
|
|
105
|
+
|
|
106
|
+
case rules[:type]
|
|
107
|
+
when "integer", "number"
|
|
108
|
+
begin
|
|
109
|
+
num_value = rules[:type] == "number" ? Float(value) : Integer(value)
|
|
110
|
+
errors << "Parameter [#{param_name}] must be at least #{rules[:min]}." if rules[:min] && num_value < rules[:min]
|
|
111
|
+
errors << "Parameter [#{param_name}] must be at most #{rules[:max]}." if rules[:max] && num_value > rules[:max]
|
|
112
|
+
rescue ArgumentError, TypeError
|
|
113
|
+
errors << "Parameter [#{param_name}] must be a valid #{rules[:type]}."
|
|
114
|
+
end
|
|
115
|
+
when "string"
|
|
116
|
+
unless value.is_a?(String)
|
|
117
|
+
errors << "Parameter [#{param_name}] must be a string."
|
|
118
|
+
next
|
|
119
|
+
end
|
|
120
|
+
errors << "Parameter [#{param_name}] must be at least #{rules[:min_length]} characters." if rules[:min_length] && value.length < rules[:min_length]
|
|
121
|
+
errors << "Parameter [#{param_name}] must be at most #{rules[:max_length]} characters." if rules[:max_length] && value.length > rules[:max_length]
|
|
122
|
+
|
|
123
|
+
if rules[:format] && FORMAT_PATTERNS[rules[:format]]
|
|
124
|
+
unless value.match?(FORMAT_PATTERNS[rules[:format]])
|
|
125
|
+
errors << "Parameter [#{param_name}] must be a valid #{rules[:format]}."
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
when "boolean"
|
|
129
|
+
unless [true, false, "true", "false"].include?(value)
|
|
130
|
+
errors << "Parameter [#{param_name}] must be a boolean."
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
# Enum validation
|
|
135
|
+
if rules[:enum] && !rules[:enum].include?(value)
|
|
136
|
+
errors << "Parameter [#{param_name}] must be one of: #{rules[:enum].join(', ')}."
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
raise ValidationError, errors unless errors.empty?
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
def handle_response(response)
|
|
144
|
+
log("Response status: #{response.status}")
|
|
145
|
+
|
|
146
|
+
data = JSON.parse(response.body)
|
|
147
|
+
|
|
148
|
+
if data["status"] == "error"
|
|
149
|
+
raise APIError.new(data["error"] || "Unknown API error", response.status, data)
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
unless response.success?
|
|
153
|
+
raise APIError.new(data["error"] || "HTTP #{response.status} error", response.status, data)
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
log("Request successful")
|
|
157
|
+
data
|
|
158
|
+
rescue JSON::ParserError => e
|
|
159
|
+
raise APIError.new("Invalid JSON response: #{e.message}", response.status)
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
def log(message)
|
|
163
|
+
puts "[APIVerve::Maze] #{message}" if @debug
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
# Custom error class for API errors
|
|
168
|
+
class APIError < StandardError
|
|
169
|
+
attr_reader :status_code, :response
|
|
170
|
+
|
|
171
|
+
def initialize(message, status_code = nil, response = nil)
|
|
172
|
+
@status_code = status_code
|
|
173
|
+
@response = response
|
|
174
|
+
super(message)
|
|
175
|
+
end
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
# Custom error class for validation errors
|
|
179
|
+
class ValidationError < StandardError
|
|
180
|
+
attr_reader :errors
|
|
181
|
+
|
|
182
|
+
def initialize(errors)
|
|
183
|
+
@errors = errors
|
|
184
|
+
super("Validation failed: #{errors.join(' ')}")
|
|
185
|
+
end
|
|
186
|
+
end
|
|
187
|
+
end
|
|
188
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: apiverve_maze
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.2.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- APIVerve
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: faraday
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.0'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '3.0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '1.0'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '3.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: faraday-multipart
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.0'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.0'
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: json
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '2.0'
|
|
53
|
+
type: :runtime
|
|
54
|
+
prerelease: false
|
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '2.0'
|
|
60
|
+
description: Maze Generator creates random mazes using recursive backtracking algorithm
|
|
61
|
+
with customizable size and difficulty.
|
|
62
|
+
email:
|
|
63
|
+
- hello@apiverve.com
|
|
64
|
+
executables: []
|
|
65
|
+
extensions: []
|
|
66
|
+
extra_rdoc_files: []
|
|
67
|
+
files:
|
|
68
|
+
- LICENSE
|
|
69
|
+
- README.md
|
|
70
|
+
- lib/apiverve/client.rb
|
|
71
|
+
- lib/apiverve_maze.rb
|
|
72
|
+
- lib/apiverve_maze/client.rb
|
|
73
|
+
homepage: https://apiverve.com/marketplace/maze?utm_source=ruby&utm_medium=homepage
|
|
74
|
+
licenses:
|
|
75
|
+
- MIT
|
|
76
|
+
metadata:
|
|
77
|
+
homepage_uri: https://apiverve.com/marketplace/maze?utm_source=ruby&utm_medium=homepage
|
|
78
|
+
source_code_uri: https://github.com/apiverve/maze-API/tree/main/ruby
|
|
79
|
+
changelog_uri: https://apiverve.com/changelog
|
|
80
|
+
documentation_uri: https://docs.apiverve.com/ref/maze
|
|
81
|
+
rdoc_options: []
|
|
82
|
+
require_paths:
|
|
83
|
+
- lib
|
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: 2.7.0
|
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
|
+
requirements:
|
|
91
|
+
- - ">="
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '0'
|
|
94
|
+
requirements: []
|
|
95
|
+
rubygems_version: 3.6.9
|
|
96
|
+
specification_version: 4
|
|
97
|
+
summary: Maze Generator API - Ruby Client
|
|
98
|
+
test_files: []
|