pnap_location_api 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pnap_location_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - PhoenixNAP
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-07-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: typhoeus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: rspec
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.6'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.6.0
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '3.6'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 3.6.0
53
+ description: Locations API Ruby Gem
54
+ email:
55
+ - support@phoenixnap.com
56
+ executables: []
57
+ extensions: []
58
+ extra_rdoc_files: []
59
+ files:
60
+ - Gemfile
61
+ - README.md
62
+ - Rakefile
63
+ - VERSION
64
+ - docs/Error.md
65
+ - docs/Location.md
66
+ - docs/LocationEnum.md
67
+ - docs/LocationsApi.md
68
+ - docs/ProductCategory.md
69
+ - docs/ProductCategoryEnum.md
70
+ - lib/pnap_location_api.rb
71
+ - lib/pnap_location_api/api/locations_api.rb
72
+ - lib/pnap_location_api/api_client.rb
73
+ - lib/pnap_location_api/api_error.rb
74
+ - lib/pnap_location_api/configuration.rb
75
+ - lib/pnap_location_api/models/error.rb
76
+ - lib/pnap_location_api/models/location.rb
77
+ - lib/pnap_location_api/models/location_enum.rb
78
+ - lib/pnap_location_api/models/product_category.rb
79
+ - lib/pnap_location_api/models/product_category_enum.rb
80
+ - lib/pnap_location_api/version.rb
81
+ - pnap_location_api.gemspec
82
+ - spec/api/locations_api_spec.rb
83
+ - spec/api_client_spec.rb
84
+ - spec/configuration_spec.rb
85
+ - spec/models/error_spec.rb
86
+ - spec/models/location_enum_spec.rb
87
+ - spec/models/location_spec.rb
88
+ - spec/models/product_category_enum_spec.rb
89
+ - spec/models/product_category_spec.rb
90
+ - spec/spec_helper.rb
91
+ homepage: https://phoenixnap.com/bare-metal-cloud
92
+ licenses:
93
+ - MPL-2.0
94
+ metadata:
95
+ source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc
96
+ post_install_message:
97
+ rdoc_options: []
98
+ require_paths:
99
+ - lib
100
+ required_ruby_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '2.4'
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ requirements: []
111
+ rubygems_version: 3.3.5
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: Locations API Ruby Gem
115
+ test_files:
116
+ - spec/api/locations_api_spec.rb
117
+ - spec/api_client_spec.rb
118
+ - spec/configuration_spec.rb
119
+ - spec/models/location_enum_spec.rb
120
+ - spec/models/product_category_enum_spec.rb
121
+ - spec/models/location_spec.rb
122
+ - spec/models/error_spec.rb
123
+ - spec/models/product_category_spec.rb
124
+ - spec/spec_helper.rb