pnap_ip_api 1.0.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.
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pnap_ip_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: 2022-04-11 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: IP Addresses 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/DeleteIpBlockResult.md
65
+ - docs/Error.md
66
+ - docs/IPBlocksApi.md
67
+ - docs/IpBlock.md
68
+ - docs/IpBlockCreate.md
69
+ - docs/IpBlockPatch.md
70
+ - lib/pnap_ip_api.rb
71
+ - lib/pnap_ip_api/api/ip_blocks_api.rb
72
+ - lib/pnap_ip_api/api_client.rb
73
+ - lib/pnap_ip_api/api_error.rb
74
+ - lib/pnap_ip_api/configuration.rb
75
+ - lib/pnap_ip_api/models/delete_ip_block_result.rb
76
+ - lib/pnap_ip_api/models/error.rb
77
+ - lib/pnap_ip_api/models/ip_block.rb
78
+ - lib/pnap_ip_api/models/ip_block_create.rb
79
+ - lib/pnap_ip_api/models/ip_block_patch.rb
80
+ - lib/pnap_ip_api/version.rb
81
+ - pnap_ip_api.gemspec
82
+ - spec/api/ip_blocks_api_spec.rb
83
+ - spec/api_client_spec.rb
84
+ - spec/configuration_spec.rb
85
+ - spec/models/delete_ip_block_result_spec.rb
86
+ - spec/models/error_spec.rb
87
+ - spec/models/ip_block_create_spec.rb
88
+ - spec/models/ip_block_patch_spec.rb
89
+ - spec/models/ip_block_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-poc
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.1.2
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: IP Addresses API Ruby Gem
115
+ test_files:
116
+ - spec/api/ip_blocks_api_spec.rb
117
+ - spec/api_client_spec.rb
118
+ - spec/configuration_spec.rb
119
+ - spec/models/ip_block_patch_spec.rb
120
+ - spec/models/ip_block_create_spec.rb
121
+ - spec/models/ip_block_spec.rb
122
+ - spec/models/error_spec.rb
123
+ - spec/models/delete_ip_block_result_spec.rb
124
+ - spec/spec_helper.rb