fog-profitbricks 3.0.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +0 -3
  3. data/README.md +437 -3
  4. data/lib/fog/profitbricks/compute.rb +138 -80
  5. data/lib/fog/profitbricks/helpers/compute/data_helper.rb +1 -1
  6. data/lib/fog/profitbricks/models/compute/contract_resource.rb +35 -0
  7. data/lib/fog/profitbricks/models/compute/contract_resources.rb +19 -0
  8. data/lib/fog/profitbricks/models/compute/group.rb +66 -0
  9. data/lib/fog/profitbricks/models/compute/groups.rb +26 -0
  10. data/lib/fog/profitbricks/models/compute/lan.rb +3 -0
  11. data/lib/fog/profitbricks/models/compute/location.rb +1 -0
  12. data/lib/fog/profitbricks/models/compute/resource.rb +30 -0
  13. data/lib/fog/profitbricks/models/compute/resources.rb +32 -0
  14. data/lib/fog/profitbricks/models/compute/share.rb +59 -0
  15. data/lib/fog/profitbricks/models/compute/shares.rb +33 -0
  16. data/lib/fog/profitbricks/models/compute/user.rb +75 -0
  17. data/lib/fog/profitbricks/models/compute/users.rb +45 -0
  18. data/lib/fog/profitbricks/models/compute/volume.rb +2 -0
  19. data/lib/fog/profitbricks/requests/compute/add_share.rb +64 -0
  20. data/lib/fog/profitbricks/requests/compute/add_user_to_group.rb +89 -0
  21. data/lib/fog/profitbricks/requests/compute/create_group.rb +85 -0
  22. data/lib/fog/profitbricks/requests/compute/create_lan.rb +1 -0
  23. data/lib/fog/profitbricks/requests/compute/create_user.rb +83 -0
  24. data/lib/fog/profitbricks/requests/compute/create_volume.rb +1 -0
  25. data/lib/fog/profitbricks/requests/compute/delete_group.rb +43 -0
  26. data/lib/fog/profitbricks/requests/compute/delete_share.rb +42 -0
  27. data/lib/fog/profitbricks/requests/compute/delete_user.rb +43 -0
  28. data/lib/fog/profitbricks/requests/compute/get_all_contract_resources.rb +55 -0
  29. data/lib/fog/profitbricks/requests/compute/get_all_groups.rb +62 -0
  30. data/lib/fog/profitbricks/requests/compute/get_all_lans.rb +1 -0
  31. data/lib/fog/profitbricks/requests/compute/get_all_resources.rb +66 -0
  32. data/lib/fog/profitbricks/requests/compute/get_all_shares.rb +46 -0
  33. data/lib/fog/profitbricks/requests/compute/get_all_users.rb +70 -0
  34. data/lib/fog/profitbricks/requests/compute/get_group.rb +64 -0
  35. data/lib/fog/profitbricks/requests/compute/get_group_users.rb +78 -0
  36. data/lib/fog/profitbricks/requests/compute/get_lan.rb +1 -0
  37. data/lib/fog/profitbricks/requests/compute/get_resource_by_type.rb +73 -0
  38. data/lib/fog/profitbricks/requests/compute/get_resources_by_type.rb +44 -0
  39. data/lib/fog/profitbricks/requests/compute/get_share.rb +52 -0
  40. data/lib/fog/profitbricks/requests/compute/get_user.rb +72 -0
  41. data/lib/fog/profitbricks/requests/compute/remove_user_from_group.rb +49 -0
  42. data/lib/fog/profitbricks/requests/compute/update_group.rb +85 -0
  43. data/lib/fog/profitbricks/requests/compute/update_lan.rb +1 -0
  44. data/lib/fog/profitbricks/requests/compute/update_share.rb +67 -0
  45. data/lib/fog/profitbricks/requests/compute/update_user.rb +94 -0
  46. data/lib/fog/profitbricks/version.rb +1 -1
  47. data/tests/profitbricks/models/compute/compute_tests.rb +6 -0
  48. data/tests/profitbricks/requests/compute/location_tests.rb +4 -4
  49. data/tests/profitbricks/requests/compute/nic_tests.rb +7 -19
  50. data/tests/profitbricks/requests/compute/server_tests.rb +9 -21
  51. metadata +58 -28
  52. data/gemfiles/Gemfile.1.9.2- +0 -5
@@ -28,10 +28,10 @@ Shindo.tests('Fog::Compute[:profitbricks] | location request', %w(profitbricks c
28
28
  data.body
29
29
  end
30
30
 
31
- # tests('#get_location').data_matches_schema(@location_schema) do
32
- # data = service.get_location("us/las")
33
- # data.body
34
- # end
31
+ tests('#get_location').data_matches_schema(@location_schema) do
32
+ data = service.get_location("us/las")
33
+ data.body
34
+ end
35
35
  end
36
36
 
37
37
  tests('failure') do
@@ -44,26 +44,14 @@ Shindo.tests('Fog::Compute[:profitbricks] | nic request', %w(profitbricks comput
44
44
  getAllImagesResponse = service.get_all_images
45
45
 
46
46
  data = getAllImagesResponse.body['items'].find do |image|
47
- if ENV["FOG_MOCK"] != "true"
48
- if image['properties']
49
- image['properties']['location'] == 'us/las' &&
50
- image['properties']['imageType'] == 'CDROM' &&
51
- image['properties']['licenceType'] == 'LINUX'
52
- else
53
- image['location'] == 'us/las' &&
54
- image['imageType'] == 'CDROM' &&
55
- image['licenceType'] == 'LINUX'
56
- end
47
+ if image['properties']
48
+ image['properties']['location'] == 'us/las' &&
49
+ image['properties']['imageType'] == 'CDROM' &&
50
+ image['properties']['licenceType'] == 'LINUX'
57
51
  else
58
- if image['properties']
59
- image['properties']['location'] == 'us/las' &&
60
- image['properties']['imageType'] == 'CDROM' &&
61
- image['properties']['licenceType'] == 'UNKNOWN'
62
- else
63
- image['location'] == 'us/las' &&
64
- image['imageType'] == 'CDROM' &&
65
- image['licenceType'] == 'UNKNOWN'
66
- end
52
+ image['location'] == 'us/las' &&
53
+ image['imageType'] == 'CDROM' &&
54
+ image['licenceType'] == 'LINUX'
67
55
  end
68
56
  end
69
57
 
@@ -112,26 +112,14 @@ Shindo.tests('Fog::Compute[:profitbricks] | server request', %w(profitbricks com
112
112
  getAllImagesResponse = service.get_all_images
113
113
 
114
114
  data = getAllImagesResponse.body['items'].find do |image|
115
- if ENV["FOG_MOCK"] != "true"
116
- if image['properties']
117
- image['properties']['location'] == 'us/las' &&
118
- image['properties']['imageType'] == 'CDROM' &&
119
- image['properties']['licenceType'] == 'LINUX'
120
- else
121
- image['location'] == 'us/las' &&
122
- image['imageType'] == 'CDROM' &&
123
- image['licenceType'] == 'LINUX'
124
- end
115
+ if image['properties']
116
+ image['properties']['location'] == 'us/las' &&
117
+ image['properties']['imageType'] == 'CDROM' &&
118
+ image['properties']['licenceType'] == 'LINUX'
125
119
  else
126
- if image['properties']
127
- image['properties']['location'] == 'us/las' &&
128
- image['properties']['imageType'] == 'CDROM' &&
129
- image['properties']['licenceType'] == 'UNKNOWN'
130
- else
131
- image['location'] == 'us/las' &&
132
- image['imageType'] == 'CDROM' &&
133
- image['licenceType'] == 'UNKNOWN'
134
- end
120
+ image['location'] == 'us/las' &&
121
+ image['imageType'] == 'CDROM' &&
122
+ image['licenceType'] == 'LINUX'
135
123
  end
136
124
  end
137
125
 
@@ -140,7 +128,7 @@ Shindo.tests('Fog::Compute[:profitbricks] | server request', %w(profitbricks com
140
128
  end
141
129
 
142
130
  if Fog.mock?
143
- tests('#get_image').data_matches_schema(@volume_schema) do
131
+ tests('#get_image').data_matches_schema(@resource_schema) do
144
132
  getImageResponse = service.get_image(@image_id)
145
133
  getImageResponse.body
146
134
  end
@@ -154,7 +142,7 @@ Shindo.tests('Fog::Compute[:profitbricks] | server request', %w(profitbricks com
154
142
  end
155
143
 
156
144
  if Fog.mock?
157
- tests('#update_image').data_matches_schema(@image_schema) do
145
+ tests('#update_image').data_matches_schema(@resource_schema) do
158
146
  options = {}
159
147
  options[:name] = 'FogImageRename'
160
148
  options[:description] = 'FogImageDescriptionUpdated'
metadata CHANGED
@@ -1,125 +1,125 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-profitbricks
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan Devenport
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-10 00:00:00.000000000 Z
11
+ date: 2017-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.42'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.42'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: fog-json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '10.4'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.4'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: minitest
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: '4'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '4'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: shindo
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0.3'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.3'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: turn
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0.9'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ~>
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0.9'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: pry
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ~>
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0.10'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ~>
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0.10'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rubocop
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - '>='
115
+ - - ">="
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - '>='
122
+ - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  description: |-
@@ -131,11 +131,11 @@ executables: []
131
131
  extensions: []
132
132
  extra_rdoc_files: []
133
133
  files:
134
- - .gitignore
135
- - .rubocop.yml
136
- - .ruby-gemset
137
- - .ruby-version
138
- - .travis.yml
134
+ - ".gitignore"
135
+ - ".rubocop.yml"
136
+ - ".ruby-gemset"
137
+ - ".ruby-version"
138
+ - ".travis.yml"
139
139
  - CONTRIBUTING.md
140
140
  - CONTRIBUTORS.md
141
141
  - Gemfile
@@ -146,18 +146,21 @@ files:
146
146
  - fog-profitbricks.gemspec
147
147
  - gemfiles/Gemfile.1.8.7
148
148
  - gemfiles/Gemfile.1.9.2+
149
- - gemfiles/Gemfile.1.9.2-
150
149
  - lib/fog/bin/profitbricks.rb
151
150
  - lib/fog/profitbricks.rb
152
151
  - lib/fog/profitbricks/compute.rb
153
152
  - lib/fog/profitbricks/helpers/compute/data_helper.rb
154
153
  - lib/fog/profitbricks/models/base.rb
154
+ - lib/fog/profitbricks/models/compute/contract_resource.rb
155
+ - lib/fog/profitbricks/models/compute/contract_resources.rb
155
156
  - lib/fog/profitbricks/models/compute/datacenter.rb
156
157
  - lib/fog/profitbricks/models/compute/datacenters.rb
157
158
  - lib/fog/profitbricks/models/compute/firewall_rule.rb
158
159
  - lib/fog/profitbricks/models/compute/firewall_rules.rb
159
160
  - lib/fog/profitbricks/models/compute/flavor.rb
160
161
  - lib/fog/profitbricks/models/compute/flavors.rb
162
+ - lib/fog/profitbricks/models/compute/group.rb
163
+ - lib/fog/profitbricks/models/compute/groups.rb
161
164
  - lib/fog/profitbricks/models/compute/image.rb
162
165
  - lib/fog/profitbricks/models/compute/images.rb
163
166
  - lib/fog/profitbricks/models/compute/ip_block.rb
@@ -174,40 +177,55 @@ files:
174
177
  - lib/fog/profitbricks/models/compute/regions.rb
175
178
  - lib/fog/profitbricks/models/compute/request.rb
176
179
  - lib/fog/profitbricks/models/compute/requests.rb
180
+ - lib/fog/profitbricks/models/compute/resource.rb
181
+ - lib/fog/profitbricks/models/compute/resources.rb
177
182
  - lib/fog/profitbricks/models/compute/server.rb
178
183
  - lib/fog/profitbricks/models/compute/servers.rb
184
+ - lib/fog/profitbricks/models/compute/share.rb
185
+ - lib/fog/profitbricks/models/compute/shares.rb
179
186
  - lib/fog/profitbricks/models/compute/snapshot.rb
180
187
  - lib/fog/profitbricks/models/compute/snapshots.rb
188
+ - lib/fog/profitbricks/models/compute/user.rb
189
+ - lib/fog/profitbricks/models/compute/users.rb
181
190
  - lib/fog/profitbricks/models/compute/volume.rb
182
191
  - lib/fog/profitbricks/models/compute/volumes.rb
192
+ - lib/fog/profitbricks/requests/compute/add_share.rb
193
+ - lib/fog/profitbricks/requests/compute/add_user_to_group.rb
183
194
  - lib/fog/profitbricks/requests/compute/associate_nic_to_load_balancer.rb
184
195
  - lib/fog/profitbricks/requests/compute/attach_cdrom.rb
185
196
  - lib/fog/profitbricks/requests/compute/attach_volume.rb
186
197
  - lib/fog/profitbricks/requests/compute/create_datacenter.rb
187
198
  - lib/fog/profitbricks/requests/compute/create_firewall_rule.rb
188
199
  - lib/fog/profitbricks/requests/compute/create_flavor.rb
200
+ - lib/fog/profitbricks/requests/compute/create_group.rb
189
201
  - lib/fog/profitbricks/requests/compute/create_ip_block.rb
190
202
  - lib/fog/profitbricks/requests/compute/create_lan.rb
191
203
  - lib/fog/profitbricks/requests/compute/create_load_balancer.rb
192
204
  - lib/fog/profitbricks/requests/compute/create_nic.rb
193
205
  - lib/fog/profitbricks/requests/compute/create_server.rb
206
+ - lib/fog/profitbricks/requests/compute/create_user.rb
194
207
  - lib/fog/profitbricks/requests/compute/create_volume.rb
195
208
  - lib/fog/profitbricks/requests/compute/create_volume_snapshot.rb
196
209
  - lib/fog/profitbricks/requests/compute/delete_datacenter.rb
197
210
  - lib/fog/profitbricks/requests/compute/delete_firewall_rule.rb
211
+ - lib/fog/profitbricks/requests/compute/delete_group.rb
198
212
  - lib/fog/profitbricks/requests/compute/delete_image.rb
199
213
  - lib/fog/profitbricks/requests/compute/delete_ip_block.rb
200
214
  - lib/fog/profitbricks/requests/compute/delete_lan.rb
201
215
  - lib/fog/profitbricks/requests/compute/delete_load_balancer.rb
202
216
  - lib/fog/profitbricks/requests/compute/delete_nic.rb
203
217
  - lib/fog/profitbricks/requests/compute/delete_server.rb
218
+ - lib/fog/profitbricks/requests/compute/delete_share.rb
204
219
  - lib/fog/profitbricks/requests/compute/delete_snapshot.rb
220
+ - lib/fog/profitbricks/requests/compute/delete_user.rb
205
221
  - lib/fog/profitbricks/requests/compute/delete_volume.rb
206
222
  - lib/fog/profitbricks/requests/compute/detach_cdrom.rb
207
223
  - lib/fog/profitbricks/requests/compute/detach_volume.rb
224
+ - lib/fog/profitbricks/requests/compute/get_all_contract_resources.rb
208
225
  - lib/fog/profitbricks/requests/compute/get_all_datacenters.rb
209
226
  - lib/fog/profitbricks/requests/compute/get_all_firewall_rules.rb
210
227
  - lib/fog/profitbricks/requests/compute/get_all_flavors.rb
228
+ - lib/fog/profitbricks/requests/compute/get_all_groups.rb
211
229
  - lib/fog/profitbricks/requests/compute/get_all_images.rb
212
230
  - lib/fog/profitbricks/requests/compute/get_all_ip_blocks.rb
213
231
  - lib/fog/profitbricks/requests/compute/get_all_lans.rb
@@ -216,14 +234,19 @@ files:
216
234
  - lib/fog/profitbricks/requests/compute/get_all_locations.rb
217
235
  - lib/fog/profitbricks/requests/compute/get_all_nic.rb
218
236
  - lib/fog/profitbricks/requests/compute/get_all_requests.rb
237
+ - lib/fog/profitbricks/requests/compute/get_all_resources.rb
219
238
  - lib/fog/profitbricks/requests/compute/get_all_servers.rb
239
+ - lib/fog/profitbricks/requests/compute/get_all_shares.rb
220
240
  - lib/fog/profitbricks/requests/compute/get_all_snapshots.rb
241
+ - lib/fog/profitbricks/requests/compute/get_all_users.rb
221
242
  - lib/fog/profitbricks/requests/compute/get_all_volumes.rb
222
243
  - lib/fog/profitbricks/requests/compute/get_attached_cdrom.rb
223
244
  - lib/fog/profitbricks/requests/compute/get_attached_volume.rb
224
245
  - lib/fog/profitbricks/requests/compute/get_datacenter.rb
225
246
  - lib/fog/profitbricks/requests/compute/get_firewall_rule.rb
226
247
  - lib/fog/profitbricks/requests/compute/get_flavor.rb
248
+ - lib/fog/profitbricks/requests/compute/get_group.rb
249
+ - lib/fog/profitbricks/requests/compute/get_group_users.rb
227
250
  - lib/fog/profitbricks/requests/compute/get_image.rb
228
251
  - lib/fog/profitbricks/requests/compute/get_ip_block.rb
229
252
  - lib/fog/profitbricks/requests/compute/get_lan.rb
@@ -233,24 +256,32 @@ files:
233
256
  - lib/fog/profitbricks/requests/compute/get_nic.rb
234
257
  - lib/fog/profitbricks/requests/compute/get_request.rb
235
258
  - lib/fog/profitbricks/requests/compute/get_request_status.rb
259
+ - lib/fog/profitbricks/requests/compute/get_resource_by_type.rb
260
+ - lib/fog/profitbricks/requests/compute/get_resources_by_type.rb
236
261
  - lib/fog/profitbricks/requests/compute/get_server.rb
262
+ - lib/fog/profitbricks/requests/compute/get_share.rb
237
263
  - lib/fog/profitbricks/requests/compute/get_snapshot.rb
264
+ - lib/fog/profitbricks/requests/compute/get_user.rb
238
265
  - lib/fog/profitbricks/requests/compute/get_volume.rb
239
266
  - lib/fog/profitbricks/requests/compute/list_attached_cdroms.rb
240
267
  - lib/fog/profitbricks/requests/compute/list_attached_volumes.rb
241
268
  - lib/fog/profitbricks/requests/compute/reboot_server.rb
242
269
  - lib/fog/profitbricks/requests/compute/remove_nic_association.rb
270
+ - lib/fog/profitbricks/requests/compute/remove_user_from_group.rb
243
271
  - lib/fog/profitbricks/requests/compute/restore_volume_snapshot.rb
244
272
  - lib/fog/profitbricks/requests/compute/start_server.rb
245
273
  - lib/fog/profitbricks/requests/compute/stop_server.rb
246
274
  - lib/fog/profitbricks/requests/compute/update_datacenter.rb
247
275
  - lib/fog/profitbricks/requests/compute/update_firewall_rule.rb
276
+ - lib/fog/profitbricks/requests/compute/update_group.rb
248
277
  - lib/fog/profitbricks/requests/compute/update_image.rb
249
278
  - lib/fog/profitbricks/requests/compute/update_lan.rb
250
279
  - lib/fog/profitbricks/requests/compute/update_load_balancer.rb
251
280
  - lib/fog/profitbricks/requests/compute/update_nic.rb
252
281
  - lib/fog/profitbricks/requests/compute/update_server.rb
282
+ - lib/fog/profitbricks/requests/compute/update_share.rb
253
283
  - lib/fog/profitbricks/requests/compute/update_snapshot.rb
284
+ - lib/fog/profitbricks/requests/compute/update_user.rb
254
285
  - lib/fog/profitbricks/requests/compute/update_volume.rb
255
286
  - lib/fog/profitbricks/version.rb
256
287
  - spec/minitest_helper.rb
@@ -274,20 +305,19 @@ require_paths:
274
305
  - lib
275
306
  required_ruby_version: !ruby/object:Gem::Requirement
276
307
  requirements:
277
- - - '>='
308
+ - - ">="
278
309
  - !ruby/object:Gem::Version
279
310
  version: '0'
280
311
  required_rubygems_version: !ruby/object:Gem::Requirement
281
312
  requirements:
282
- - - '>='
313
+ - - ">="
283
314
  - !ruby/object:Gem::Version
284
315
  version: '0'
285
316
  requirements: []
286
317
  rubyforge_project:
287
- rubygems_version: 2.4.2
318
+ rubygems_version: 2.6.12
288
319
  signing_key:
289
320
  specification_version: 4
290
321
  summary: Module for the 'fog' gem to support ProfitBricks.
291
322
  test_files:
292
323
  - spec/minitest_helper.rb
293
- has_rdoc:
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'mime-types', '< 2.0'
4
-
5
- gemspec :path => '../'