fog 2.2.0 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6926b50582d9992b48357cf44eb4440675b8b6239f35029b68c22f661c020873
4
- data.tar.gz: e4ce548267424aa0f7896b6edd48c4cda4b61e9c1239ceab05801d9752f25e51
3
+ metadata.gz: 83a7851a2cc9e27912386f5660add2eb81863ea96f7ae31e25a75914c8d065fe
4
+ data.tar.gz: b0c2e4ecc08a9c8f2fc4aca206aeda4077b11213ce5f11e7b60817a5d21ecb0d
5
5
  SHA512:
6
- metadata.gz: 0bdfd07924f5019cebe3f1ee303800e94174ab023ca622b5928142d1c187aaec5cb769efa3c90d217cb68b4585154adec43c3c92d91f2bdb7fa4e1a3fa8b205b
7
- data.tar.gz: 7264497c6780b43fd1f13f275fbc61008cd466f48d7f5477ae7a61e25b21e83477de217b28139ef259ae23c52b49fab0bcca3f896e962a8394bfcb448d90d79f
6
+ metadata.gz: 20118ffbc5b1cfc7b2ccccd201ed8a56db38f558f8d2487802c86da60cdaef1aab67de57862ccc57388a5a170adabc4f1413d58d0d69325c964cd17db7e5fd7e
7
+ data.tar.gz: bdd21c040588cdb1989f71360656db0b9ab22426ecbade850b9c978015df00ec364c3aef9d703e52172c81b6582496a796973c42004b3ecd932ae4a8f14705b0
@@ -0,0 +1,10 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
7
+ - package-ecosystem: "github-actions"
8
+ directory: "/"
9
+ schedule:
10
+ interval: "daily"
@@ -0,0 +1,67 @@
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ #
7
+ # ******** NOTE ********
8
+ # We have attempted to detect the languages in your repository. Please check
9
+ # the `language` matrix defined below to confirm you have the correct set of
10
+ # supported CodeQL languages.
11
+ #
12
+ name: "CodeQL"
13
+
14
+ on:
15
+ push:
16
+ branches: [ master ]
17
+ pull_request:
18
+ # The branches below must be a subset of the branches above
19
+ branches: [ master ]
20
+ jobs:
21
+ analyze:
22
+ name: Analyze
23
+ runs-on: ubuntu-latest
24
+ permissions:
25
+ actions: read
26
+ contents: read
27
+ security-events: write
28
+
29
+ strategy:
30
+ fail-fast: false
31
+ matrix:
32
+ language: [ 'ruby' ]
33
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
34
+ # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
35
+
36
+ steps:
37
+ - name: Checkout repository
38
+ uses: actions/checkout@v3
39
+
40
+ # Initializes the CodeQL tools for scanning.
41
+ - name: Initialize CodeQL
42
+ uses: github/codeql-action/init@v2
43
+ with:
44
+ languages: ${{ matrix.language }}
45
+ # If you wish to specify custom queries, you can do so here or in a config file.
46
+ # By default, queries listed here will override any specified in a config file.
47
+ # Prefix the list here with "+" to use these queries and those in the config file.
48
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
49
+
50
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
51
+ # If this step fails, then you should remove it and run the build manually (see below)
52
+ - name: Autobuild
53
+ uses: github/codeql-action/autobuild@v2
54
+
55
+ # ℹ️ Command-line programs to run using the OS shell.
56
+ # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
57
+
58
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
59
+ # and modify them (or add more) to build your code if your project
60
+ # uses a compiled language
61
+
62
+ #- run: |
63
+ # make bootstrap
64
+ # make release
65
+
66
+ - name: Perform CodeQL Analysis
67
+ uses: github/codeql-action/analyze@v2
@@ -0,0 +1,14 @@
1
+ name: 'Dependency Review'
2
+ on: [pull_request]
3
+
4
+ permissions:
5
+ contents: read
6
+
7
+ jobs:
8
+ dependency-review:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: 'Checkout Repository'
12
+ uses: actions/checkout@v3
13
+ - name: 'Dependency Review'
14
+ uses: actions/dependency-review-action@v2
@@ -0,0 +1,23 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+ branches: [ master ]
15
+
16
+ permissions:
17
+ contents: read
18
+
19
+ jobs:
20
+ test:
21
+ permissions:
22
+ contents: none
23
+ uses: fog/.github/.github/workflows/ruby.yml@v1.1.0
@@ -0,0 +1,14 @@
1
+ name: Mark stale issues and pull requests
2
+
3
+ on:
4
+ schedule:
5
+ - cron: "30 1 * * *"
6
+
7
+ permissions:
8
+ contents: read
9
+
10
+ jobs:
11
+ stale:
12
+ permissions:
13
+ contents: none
14
+ uses: fog/.github/.github/workflows/stale.yml@v1.1.0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,80 @@
1
+ ## 2.3.0 10/03/2022
2
+ *Hash* 934c38de2597788b7f7cf5fb7540138232955544
3
+
4
+ Statistic | Value
5
+ ------------- | --------:
6
+ Collaborators | 2
7
+ Forks | 1504
8
+ Open Issues | 4
9
+ Watchers | 4305
10
+
11
+ **MVP!** Olle Jonsson
12
+
13
+ #### [misc]
14
+ * Supported Ruby version is 2.5+ now. thanks Lukas Zapletal
15
+ * chore: Enable codeql action. thanks Naveen
16
+ * Rakefile: Drop EOL'd property rubyforge_project. thanks Olle Jonsson
17
+ * Gemspec: Drop EOL'd property rubyforge_project. thanks Olle Jonsson
18
+ * Update library dependences. thanks Takashi Yamamoto
19
+ * dependabot[bot] (43):. thanks Wesley Beary
20
+ * Update fog-dynect requirement from ~> 0.0.2 to >= 0.0.2, < 0.5.0. thanks Wesley Beary
21
+ * Update webmock requirement from ~> 1.22.2 to ~> 3.12.1. thanks Wesley Beary
22
+ * Update fog-brightbox requirement from ~> 0.4 to >= 0.4, < 2.0. thanks Wesley Beary
23
+ * Bump actions/stale from 3 to 3.0.18. thanks Wesley Beary
24
+ * Bump actions/checkout from 2 to 2.3.4. thanks Wesley Beary
25
+ * Bump actions/stale from 3.0.18 to 3.0.19. thanks Wesley Beary
26
+ * Update fog-dynect requirement from >= 0.0.2, < 0.5.0 to >= 0.0.2, < 0.6.0. thanks Wesley Beary
27
+ * Update webmock requirement from ~> 3.12.1 to ~> 3.13.0. thanks Wesley Beary
28
+ * Update rubocop requirement from = 0.52.1 to = 1.16.0. thanks Wesley Beary
29
+ * Update rubocop requirement from = 1.16.0 to = 1.16.1. thanks Wesley Beary
30
+ * Update rubocop requirement from = 1.16.1 to = 1.17.0. thanks Wesley Beary
31
+ * Update rubocop requirement from = 1.17.0 to = 1.18.0. thanks Wesley Beary
32
+ * Update rubocop requirement from = 1.18.0 to = 1.18.1. thanks Wesley Beary
33
+ * Update rubocop requirement from = 1.18.1 to = 1.18.2. thanks Wesley Beary
34
+ * Update rubocop requirement from = 1.18.2 to = 1.18.3. thanks Wesley Beary
35
+ * Bump actions/stale from 3.0.19 to 4. thanks Wesley Beary
36
+ * Update rubocop requirement from = 1.18.3 to = 1.18.4. thanks Wesley Beary
37
+ * Update webmock requirement from ~> 3.13.0 to ~> 3.14.0. thanks Wesley Beary
38
+ * Update rubocop requirement from = 1.18.4 to = 1.19.0. thanks Wesley Beary
39
+ * Update rubocop requirement from = 1.19.0 to = 1.20.0. thanks Wesley Beary
40
+ * Update rubocop requirement from = 1.20.0 to = 1.21.0. thanks Wesley Beary
41
+ * Update rubocop requirement from = 1.21.0 to = 1.22.0. thanks Wesley Beary
42
+ * Update rubocop requirement from = 1.22.0 to = 1.22.1. thanks Wesley Beary
43
+ * Bump actions/checkout from 2.3.4 to 2.3.5. thanks Wesley Beary
44
+ * Update rubocop requirement from = 1.22.1 to = 1.22.2. thanks Wesley Beary
45
+ * Update rubocop requirement from = 1.22.2 to = 1.22.3. thanks Wesley Beary
46
+ * Bump actions/checkout from 2.3.5 to 2.4.0. thanks Wesley Beary
47
+ * Update rubocop requirement from = 1.22.3 to = 1.23.0. thanks Wesley Beary
48
+ * Update rubocop requirement from = 1.23.0 to = 1.24.0. thanks Wesley Beary
49
+ * Update rubocop requirement from = 1.24.0 to = 1.24.1. thanks Wesley Beary
50
+ * Update rubocop requirement from = 1.24.1 to = 1.25.0. thanks Wesley Beary
51
+ * Update rubocop requirement from = 1.25.0 to = 1.25.1. thanks Wesley Beary
52
+ * Bump actions/checkout from 2.4.0 to 3. thanks Wesley Beary
53
+ * Update rubocop requirement from = 1.25.1 to = 1.26.0. thanks Wesley Beary
54
+ * Update rubocop requirement from = 1.26.0 to = 1.26.1. thanks Wesley Beary
55
+ * Update rubocop requirement from = 1.26.1 to = 1.27.0. thanks Wesley Beary
56
+ * Update rubocop requirement from = 1.27.0 to = 1.28.1. thanks Wesley Beary
57
+ * Update rubocop requirement from = 1.28.1 to = 1.28.2. thanks Wesley Beary
58
+ * Bump actions/dependency-review-action from 1 to 2. thanks Wesley Beary
59
+ * Update webmock requirement from ~> 3.14.0 to ~> 3.15.0. thanks Wesley Beary
60
+ * Update webmock requirement from ~> 3.15.0 to ~> 3.16.0. thanks Wesley Beary
61
+ * Update webmock requirement from ~> 3.16.0 to ~> 3.17.0. thanks Wesley Beary
62
+ * Update webmock requirement from ~> 3.17.0 to ~> 3.18.1. thanks Wesley Beary
63
+ * v2.2.0. thanks geemus
64
+ * refresh github actions and config. thanks geemus
65
+ * focus actions tests on supported rubies. thanks geemus
66
+ * allow 3.0/head test failures for now. thanks geemus
67
+ * attempt to add libcurl dev headers to get bundler working. thanks geemus
68
+ * add bin/cloudstack back in to get ci on track. thanks geemus
69
+ * drop Aliyun bin require, as it is broken. thanks geemus
70
+ * make available check in bin resilient to nil. thanks geemus
71
+ * fix AWS CDN reference in bin tests. thanks geemus
72
+ * workaround autoload mismatch with renested AWS class/module names. thanks geemus
73
+ * use shared workflows. thanks geemus
74
+ * Set permissions for GitHub actions. thanks naveensrinivasan
75
+ * chore(deps): Included dependency review. thanks naveensrinivasan
76
+
77
+
1
78
  ## 2.2.0 06/18/2019
2
79
  *Hash* 198649965a63fea6296831689cadda2c06570840
3
80
 
data/README.md CHANGED
@@ -6,7 +6,7 @@ fog is the Ruby cloud services library, top to bottom:
6
6
  * Requests allow power users to get the most out of the features of each individual cloud.
7
7
  * Mocks make testing and integrating a breeze.
8
8
 
9
- [![Build Status](https://secure.travis-ci.org/fog/fog.svg?branch=master)](http://travis-ci.org/fog/fog)
9
+ [![Build Status](https://github.com/fog/fog/actions/workflows/ruby.yml/badge.svg)](https://github.com/fog/fog/actions/workflows/ruby.yml)
10
10
  [![Code Climate](https://codeclimate.com/github/fog/fog/badges/gpa.svg)](https://codeclimate.com/github/fog/fog)
11
11
  [![Gem Version](https://badge.fury.io/rb/fog.svg)](http://badge.fury.io/rb/fog)
12
12
  [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=fog&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=fog&package-manager=bundler&version-scheme=semver)
data/Rakefile CHANGED
@@ -30,10 +30,6 @@ def date
30
30
  Date.today.to_s
31
31
  end
32
32
 
33
- def rubyforge_project
34
- name
35
- end
36
-
37
33
  def gemspec_file
38
34
  "#{name}.gemspec"
39
35
  end
@@ -200,8 +196,6 @@ task :gemspec => :validate do
200
196
  replace_header(spec, :name)
201
197
  replace_header(spec, :version)
202
198
  replace_header(spec, :date)
203
- #comment this out if your rubyforge_project has a different name
204
- replace_header(spec, :rubyforge_project)
205
199
 
206
200
  File.open(gemspec_file, 'w') { |io| io.write(spec) }
207
201
  puts "Updated #{gemspec_file}"
data/fog.gemspec CHANGED
@@ -11,9 +11,8 @@ Gem::Specification.new do |s|
11
11
  ## If your rubyforge_project name is different, then edit it and comment out
12
12
  ## the sub! line in the Rakefile
13
13
  s.name = "fog"
14
- s.version = "2.2.0"
15
- s.date = "2019-06-18"
16
- s.rubyforge_project = "fog"
14
+ s.version = "2.3.0"
15
+ s.date = "2022-10-03"
17
16
 
18
17
  ## Make sure your summary is short. The description may be as long
19
18
  ## as you like.
@@ -44,25 +43,25 @@ Gem::Specification.new do |s|
44
43
  s.rdoc_options = ["--charset=UTF-8"]
45
44
  s.extra_rdoc_files = %w[README.md]
46
45
 
47
- s.required_ruby_version = '>= 2.0.0'
46
+ s.required_ruby_version = '>= 2.5.0'
48
47
 
49
48
  s.add_dependency("fog-core", "~> 2.1")
50
49
  s.add_dependency("fog-json")
51
50
  s.add_dependency("fog-xml", "~> 0.1.1")
52
51
 
53
- s.add_dependency("json", "~> 2.0")
52
+ s.add_dependency("json", "~> 2.3")
54
53
  s.add_dependency("ipaddress", "~> 0.5")
55
54
 
56
55
  # Modular providers (please keep sorted)
57
56
  s.add_dependency("fog-aliyun",">= 0.1.0")
58
57
  s.add_dependency("fog-atmos")
59
58
  s.add_dependency("fog-aws", ">= 0.6.0")
60
- s.add_dependency("fog-brightbox", "~> 0.4")
59
+ s.add_dependency("fog-brightbox", ">= 0.4", "< 2.0")
61
60
  s.add_dependency("fog-cloudatcost", "~> 0.4")
62
61
  s.add_dependency("fog-cloudstack", "~> 0.1.0")
63
62
  s.add_dependency("fog-digitalocean", ">= 0.3.0")
64
63
  s.add_dependency("fog-dnsimple", "~> 2.1")
65
- s.add_dependency("fog-dynect", "~> 0.0.2")
64
+ s.add_dependency("fog-dynect", ">= 0.0.2", "< 0.6.0")
66
65
  s.add_dependency("fog-ecloud", "~> 0.1")
67
66
  s.add_dependency("fog-google", "~> 1.0")
68
67
  s.add_dependency("fog-internet-archive")
@@ -93,7 +92,7 @@ Gem::Specification.new do |s|
93
92
  s.add_development_dependency("pry")
94
93
  s.add_development_dependency("rake")
95
94
  s.add_development_dependency("rbvmomi")
96
- s.add_development_dependency("rubocop", "0.52.1")
95
+ s.add_development_dependency("rubocop", "1.28.2")
97
96
  s.add_development_dependency("shindo", "~> 0.3.4")
98
97
  s.add_development_dependency("simplecov")
99
98
  s.add_development_dependency("thor")
@@ -101,7 +100,7 @@ Gem::Specification.new do |s|
101
100
  s.add_development_dependency("rspec-core")
102
101
  s.add_development_dependency("rspec-expectations")
103
102
  s.add_development_dependency("vcr")
104
- s.add_development_dependency("webmock","~>1.22.2")
103
+ s.add_development_dependency("webmock","~>3.18.1")
105
104
 
106
105
  s.files = `git ls-files`.split("\n")
107
106
  s.test_files = `git ls-files -- {spec,tests}/*`.split("\n")
@@ -0,0 +1,28 @@
1
+ class Cloudstack < Fog::Bin
2
+ class << self
3
+ def class_for(key)
4
+ case key
5
+ when :compute
6
+ Fog::Compute::Cloudstack
7
+ else
8
+ raise ArgumentError, "Unrecognized service: #{key}"
9
+ end
10
+ end
11
+
12
+ def [](service)
13
+ @@connections ||= Hash.new do |hash, key|
14
+ hash[key] = case key
15
+ when :compute
16
+ Fog::Compute.new(:provider => 'Cloudstack')
17
+ else
18
+ raise ArgumentError, "Unrecognized service: #{key.inspect}"
19
+ end
20
+ end
21
+ @@connections[service]
22
+ end
23
+
24
+ def services
25
+ Fog::Cloudstack.services
26
+ end
27
+ end
28
+ end
data/lib/fog/bin.rb CHANGED
@@ -3,7 +3,7 @@ require 'fog/core/credentials'
3
3
  module Fog
4
4
  class << self
5
5
  def available_providers
6
- @available_providers ||= Fog.providers.values.select {|provider| Kernel.const_get(provider).available?}.sort
6
+ @available_providers ||= Fog.providers.values.select {|provider| Kernel.const_get(provider).try(:available?)}.sort
7
7
  end
8
8
 
9
9
  def registered_providers
@@ -92,4 +92,3 @@ require 'fog/bin/xenserver'
92
92
  require 'fog/bin/cloudsigma'
93
93
  require 'fog/bin/openvz'
94
94
  require 'fog/bin/opennebula'
95
- require 'fog/bin/aliyun'
data/lib/fog/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Fog
2
- VERSION = '2.2.0'
2
+ VERSION = '2.3.0'
3
3
  end
@@ -141,6 +141,7 @@ Watchers | #{watchers}
141
141
  'Nick Osborn',
142
142
  'nightshade427',
143
143
  'Oleg Vivtash',
144
+ 'Olle Jonsson',
144
145
  'Patrick Debois',
145
146
  'Paul Thornthwaite',
146
147
  'Paulo Henrique Lopes Ribeiro',
@@ -2,6 +2,12 @@ require "spec_helper"
2
2
  require "fog/bin"
3
3
  require "helpers/bin"
4
4
 
5
+ # workaround autoload which doesn't match renested/deprecated classes
6
+ require "fog/aws/cdn"
7
+ require "fog/aws/compute"
8
+ require "fog/aws/dns"
9
+ require "fog/aws/storage"
10
+
5
11
  describe AWS do
6
12
  include Fog::BinSpec
7
13
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - geemus (Wesley Beary)
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-18 00:00:00.000000000 Z
11
+ date: 2022-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '2.0'
61
+ version: '2.3'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '2.0'
68
+ version: '2.3'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: ipaddress
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -126,16 +126,22 @@ dependencies:
126
126
  name: fog-brightbox
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - "~>"
129
+ - - ">="
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0.4'
132
+ - - "<"
133
+ - !ruby/object:Gem::Version
134
+ version: '2.0'
132
135
  type: :runtime
133
136
  prerelease: false
134
137
  version_requirements: !ruby/object:Gem::Requirement
135
138
  requirements:
136
- - - "~>"
139
+ - - ">="
137
140
  - !ruby/object:Gem::Version
138
141
  version: '0.4'
142
+ - - "<"
143
+ - !ruby/object:Gem::Version
144
+ version: '2.0'
139
145
  - !ruby/object:Gem::Dependency
140
146
  name: fog-cloudatcost
141
147
  requirement: !ruby/object:Gem::Requirement
@@ -196,16 +202,22 @@ dependencies:
196
202
  name: fog-dynect
197
203
  requirement: !ruby/object:Gem::Requirement
198
204
  requirements:
199
- - - "~>"
205
+ - - ">="
200
206
  - !ruby/object:Gem::Version
201
207
  version: 0.0.2
208
+ - - "<"
209
+ - !ruby/object:Gem::Version
210
+ version: 0.6.0
202
211
  type: :runtime
203
212
  prerelease: false
204
213
  version_requirements: !ruby/object:Gem::Requirement
205
214
  requirements:
206
- - - "~>"
215
+ - - ">="
207
216
  - !ruby/object:Gem::Version
208
217
  version: 0.0.2
218
+ - - "<"
219
+ - !ruby/object:Gem::Version
220
+ version: 0.6.0
209
221
  - !ruby/object:Gem::Dependency
210
222
  name: fog-ecloud
211
223
  requirement: !ruby/object:Gem::Requirement
@@ -618,14 +630,14 @@ dependencies:
618
630
  requirements:
619
631
  - - '='
620
632
  - !ruby/object:Gem::Version
621
- version: 0.52.1
633
+ version: 1.28.2
622
634
  type: :development
623
635
  prerelease: false
624
636
  version_requirements: !ruby/object:Gem::Requirement
625
637
  requirements:
626
638
  - - '='
627
639
  - !ruby/object:Gem::Version
628
- version: 0.52.1
640
+ version: 1.28.2
629
641
  - !ruby/object:Gem::Dependency
630
642
  name: shindo
631
643
  requirement: !ruby/object:Gem::Requirement
@@ -730,14 +742,14 @@ dependencies:
730
742
  requirements:
731
743
  - - "~>"
732
744
  - !ruby/object:Gem::Version
733
- version: 1.22.2
745
+ version: 3.18.1
734
746
  type: :development
735
747
  prerelease: false
736
748
  version_requirements: !ruby/object:Gem::Requirement
737
749
  requirements:
738
750
  - - "~>"
739
751
  - !ruby/object:Gem::Version
740
- version: 1.22.2
752
+ version: 3.18.1
741
753
  description: The Ruby cloud services library. Supports all major cloud providers including
742
754
  AWS, Rackspace, Linode, Blue Box, StormOnDemand, and many others. Full support for
743
755
  most AWS services including EC2, S3, CloudWatch, SimpleDB, ELB, and RDS.
@@ -749,7 +761,11 @@ extra_rdoc_files:
749
761
  - README.md
750
762
  files:
751
763
  - ".document"
752
- - ".github/stale.yml"
764
+ - ".github/dependabot.yml"
765
+ - ".github/workflows/codeql.yml"
766
+ - ".github/workflows/depsreview.yml"
767
+ - ".github/workflows/ruby.yml"
768
+ - ".github/workflows/stale.yml"
753
769
  - ".gitignore"
754
770
  - ".irbrc"
755
771
  - ".rubocop.yml"
@@ -795,6 +811,7 @@ files:
795
811
  - lib/fog/bin/brightbox.rb
796
812
  - lib/fog/bin/clodo.rb
797
813
  - lib/fog/bin/cloudsigma.rb
814
+ - lib/fog/bin/cloudstack.rb
798
815
  - lib/fog/bin/dnsmadeeasy.rb
799
816
  - lib/fog/bin/dreamhost.rb
800
817
  - lib/fog/bin/fogdocker.rb
@@ -1805,253 +1822,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
1805
1822
  requirements:
1806
1823
  - - ">="
1807
1824
  - !ruby/object:Gem::Version
1808
- version: 2.0.0
1825
+ version: 2.5.0
1809
1826
  required_rubygems_version: !ruby/object:Gem::Requirement
1810
1827
  requirements:
1811
1828
  - - ">="
1812
1829
  - !ruby/object:Gem::Version
1813
1830
  version: '0'
1814
1831
  requirements: []
1815
- rubygems_version: 3.0.2
1816
- signing_key:
1832
+ rubygems_version: 3.3.5
1833
+ signing_key:
1817
1834
  specification_version: 2
1818
1835
  summary: brings clouds to you
1819
- test_files:
1820
- - spec/fog/account_spec.rb
1821
- - spec/fog/billing_spec.rb
1822
- - spec/fog/bin/atmos_spec.rb
1823
- - spec/fog/bin/aws_spec.rb
1824
- - spec/fog/bin/baremetalcloud_spec.rb
1825
- - spec/fog/bin/brightbox_spec.rb
1826
- - spec/fog/bin/clodo_spec.rb
1827
- - spec/fog/bin/cloudsigma_spec.rb
1828
- - spec/fog/bin/dnsimple_spec.rb
1829
- - spec/fog/bin/dnsmadeeasy_spec.rb
1830
- - spec/fog/bin/dreamhost_spec.rb
1831
- - spec/fog/bin/dynect_spec.rb
1832
- - spec/fog/bin/ecloud_spec.rb
1833
- - spec/fog/bin/fogdocker_spec.rb
1834
- - spec/fog/bin/glesys_spec.rb
1835
- - spec/fog/bin/gogrid_spec.rb
1836
- - spec/fog/bin/google_spec.rb
1837
- - spec/fog/bin/ibm_spec.rb
1838
- - spec/fog/bin/linode_spec.rb
1839
- - spec/fog/bin/local_spec.rb
1840
- - spec/fog/bin/opennebula_spec.rb
1841
- - spec/fog/bin/openstack_spec.rb
1842
- - spec/fog/bin/openvz_spec.rb
1843
- - spec/fog/bin/powerdns_spec.rb
1844
- - spec/fog/bin/profitbricks_spec.rb
1845
- - spec/fog/bin/rackspace_spec.rb
1846
- - spec/fog/bin/rage4_spec.rb
1847
- - spec/fog/bin/riakcs_spec.rb
1848
- - spec/fog/bin/sakuracloud_spec.rb
1849
- - spec/fog/bin/serverlove_spec.rb
1850
- - spec/fog/bin/softlayer_spec.rb
1851
- - spec/fog/bin/stormondemand_spec.rb
1852
- - spec/fog/bin/vcloud_spec.rb
1853
- - spec/fog/bin/vclouddirector_spec.rb
1854
- - spec/fog/bin/vmfusion_spec.rb
1855
- - spec/fog/bin/voxel_spec.rb
1856
- - spec/fog/bin/vsphere_spec.rb
1857
- - spec/fog/bin/xenserver_spec.rb
1858
- - spec/fog/bin_spec.rb
1859
- - spec/fog/cdn_spec.rb
1860
- - spec/fog/identity_spec.rb
1861
- - spec/fog/image_spec.rb
1862
- - spec/fog/metering_spec.rb
1863
- - spec/fog/monitoring_spec.rb
1864
- - spec/fog/network_spec.rb
1865
- - spec/fog/orchestration_spec.rb
1866
- - spec/fog/storage_spec.rb
1867
- - spec/fog/support_spec.rb
1868
- - spec/fog/volume_spec.rb
1869
- - spec/fog/vpn_spec.rb
1870
- - spec/fog/xml/connection_spec.rb
1871
- - spec/helpers/bin.rb
1872
- - spec/spec_helper.rb
1873
- - spec/vcloud_director/generators/compute/instantiate_vapp_template_params_spec.rb
1874
- - spec/vcloud_director/requests/compute/instantiate_vapp_template_spec.rb
1875
- - spec/vcloud_director/spec_helper.rb
1876
- - tests/clodo/requests/compute/image_tests.rb
1877
- - tests/clodo/requests/compute/server_tests.rb
1878
- - tests/cloudsigma/models/server_tests.rb
1879
- - tests/cloudsigma/models/servers_tests.rb
1880
- - tests/cloudsigma/models/snapshot_tests.rb
1881
- - tests/cloudsigma/models/snapshots_tests.rb
1882
- - tests/cloudsigma/models/volume_tests.rb
1883
- - tests/cloudsigma/models/volumes_tests.rb
1884
- - tests/cloudsigma/requests/server_tests.rb
1885
- - tests/cloudsigma/requests/snapshots_tests.rb
1886
- - tests/cloudsigma/requests/volumes_tests.rb
1887
- - tests/compute/helper.rb
1888
- - tests/compute/models/flavors_tests.rb
1889
- - tests/compute/models/server_tests.rb
1890
- - tests/compute/models/servers_tests.rb
1891
- - tests/core/attribute_tests.rb
1892
- - tests/core/credential_tests.rb
1893
- - tests/core/current_machine_tests.rb
1894
- - tests/core/mocking_tests.rb
1895
- - tests/core/parser_tests.rb
1896
- - tests/core/service_tests.rb
1897
- - tests/core/timeout_tests.rb
1898
- - tests/core/uuid_tests.rb
1899
- - tests/core/wait_for_tests.rb
1900
- - tests/dns/helper.rb
1901
- - tests/dns/models/record_tests.rb
1902
- - tests/dns/models/records_tests.rb
1903
- - tests/dns/models/zone_tests.rb
1904
- - tests/dns/models/zones_tests.rb
1905
- - tests/dnsmadeeasy/requests/dns/dns_tests.rb
1906
- - tests/dreamhost/README.md
1907
- - tests/dreamhost/dns_tests.rb
1908
- - tests/dreamhost/helper.rb
1909
- - tests/dreamhost/models/dns/record_tests.rb
1910
- - tests/dreamhost/models/dns/records_tests.rb
1911
- - tests/dreamhost/models/dns/zone_tests.rb
1912
- - tests/dreamhost/models/dns/zones_tests.rb
1913
- - tests/dreamhost/requests/dns/create_record_tests.rb
1914
- - tests/dreamhost/requests/dns/delete_record_tests.rb
1915
- - tests/dreamhost/requests/dns/list_records_tests.rb
1916
- - tests/fogdocker/compute_tests.rb
1917
- - tests/fogdocker/models/compute/image_tests.rb
1918
- - tests/fogdocker/models/compute/images_tests.rb
1919
- - tests/fogdocker/models/compute/server_tests.rb
1920
- - tests/fogdocker/models/compute/servers_tests.rb
1921
- - tests/fogdocker/requests/compute/api_version_tests.rb
1922
- - tests/fogdocker/requests/compute/container_action_tests.rb
1923
- - tests/fogdocker/requests/compute/container_commit_tests.rb
1924
- - tests/fogdocker/requests/compute/container_create_tests.rb
1925
- - tests/fogdocker/requests/compute/container_delete_tests.rb
1926
- - tests/fogdocker/requests/compute/image_create_tests.rb
1927
- - tests/fogdocker/requests/compute/image_delete_tests.rb
1928
- - tests/fogdocker/requests/compute/image_search_tests.rb
1929
- - tests/glesys/requests/compute/helper.rb
1930
- - tests/glesys/requests/compute/ip_tests.rb
1931
- - tests/glesys/requests/compute/server_tests.rb
1932
- - tests/glesys/requests/compute/ssh_key_tests.rb
1933
- - tests/glesys/requests/compute/template_tests.rb
1934
- - tests/go_grid/requests/compute/image_tests.rb
1935
- - tests/helper.rb
1936
- - tests/helpers/collection_helper.rb
1937
- - tests/helpers/compute/flavors_helper.rb
1938
- - tests/helpers/compute/server_helper.rb
1939
- - tests/helpers/compute/servers_helper.rb
1940
- - tests/helpers/formats_helper.rb
1941
- - tests/helpers/formats_helper_tests.rb
1942
- - tests/helpers/mock_helper.rb
1943
- - tests/helpers/model_helper.rb
1944
- - tests/helpers/responds_to_helper.rb
1945
- - tests/helpers/schema_validator_tests.rb
1946
- - tests/helpers/succeeds_helper.rb
1947
- - tests/ibm/models/compute/image_tests.rb
1948
- - tests/ibm/models/compute/key_tests.rb
1949
- - tests/ibm/models/compute/keys_tests.rb
1950
- - tests/ibm/models/compute/locations_tests.rb
1951
- - tests/ibm/models/compute/server_tests.rb
1952
- - tests/ibm/models/compute/servers_tests.rb
1953
- - tests/ibm/models/storage/volume_tests.rb
1954
- - tests/ibm/requests/compute/address_tests.rb
1955
- - tests/ibm/requests/compute/image_tests.rb
1956
- - tests/ibm/requests/compute/instance_tests.rb
1957
- - tests/ibm/requests/compute/key_tests.rb
1958
- - tests/ibm/requests/compute/location_tests.rb
1959
- - tests/ibm/requests/compute/vlan_tests.rb
1960
- - tests/ibm/requests/storage/volume_tests.rb
1961
- - tests/linode/requests/compute/datacenter_tests.rb
1962
- - tests/linode/requests/compute/distribution_tests.rb
1963
- - tests/linode/requests/compute/helper.rb
1964
- - tests/linode/requests/compute/kernel_tests.rb
1965
- - tests/linode/requests/compute/linode_tests.rb
1966
- - tests/linode/requests/compute/linodeplans_tests.rb
1967
- - tests/linode/requests/compute/nodebalancers_tests.rb
1968
- - tests/linode/requests/compute/stackscripts_tests.rb
1969
- - tests/linode/requests/dns/dns_tests.rb
1970
- - tests/lorem.txt
1971
- - tests/opennebula/compute_tests.rb
1972
- - tests/opennebula/models/compute/flavor_tests.rb
1973
- - tests/opennebula/models/compute/flavors_tests.rb
1974
- - tests/opennebula/models/compute/group_tests.rb
1975
- - tests/opennebula/models/compute/groups_tests.rb
1976
- - tests/opennebula/models/compute/network_tests.rb
1977
- - tests/opennebula/models/compute/networks_tests.rb
1978
- - tests/opennebula/requests/compute/vm_allocate_tests.rb
1979
- - tests/opennebula/requests/compute/vm_disk_snapshot_test.rb
1980
- - tests/opennebula/requests/compute/vm_suspend_resume_tests.rb
1981
- - tests/openvz/helper.rb
1982
- - tests/openvz/models/compute/server_tests.rb
1983
- - tests/openvz/models/compute/servers_tests.rb
1984
- - tests/rage4/requests/dns/dns_tests.rb
1985
- - tests/storage/helper.rb
1986
- - tests/storage/models/directories_tests.rb
1987
- - tests/storage/models/directory_test.rb
1988
- - tests/storage/models/file_tests.rb
1989
- - tests/storage/models/files_tests.rb
1990
- - tests/vcloud/data/api_+_admin_+_network_+_2
1991
- - tests/vcloud/data/api_+_network_+_1
1992
- - tests/vcloud/data/api_+_org_+_
1993
- - tests/vcloud/data/api_+_org_+_1
1994
- - tests/vcloud/data/api_+_sessions
1995
- - tests/vcloud/data/api_+_v1.0_+_admin_+_network_+_2
1996
- - tests/vcloud/data/api_+_v1.0_+_login
1997
- - tests/vcloud/data/api_+_v1.0_+_network_+_1
1998
- - tests/vcloud/data/api_+_v1.0_+_network_+_2
1999
- - tests/vcloud/data/api_+_v1.0_+_org_+_1
2000
- - tests/vcloud/data/api_+_v1.0_+_vApp_+_vapp-1
2001
- - tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1
2002
- - tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2
2003
- - tests/vcloud/data/api_+_v1.0_+_vdc_+_1
2004
- - tests/vcloud/data/api_+_vApp_+_vapp-1
2005
- - tests/vcloud/data/api_+_vApp_+_vm-2
2006
- - tests/vcloud/data/api_+_vdc_+_1
2007
- - tests/vcloud/models/compute/helper.rb
2008
- - tests/vcloud/models/compute/network_tests.rb
2009
- - tests/vcloud/models/compute/networks_tests.rb
2010
- - tests/vcloud/models/compute/organization_tests.rb
2011
- - tests/vcloud/models/compute/organizations_tests.rb
2012
- - tests/vcloud/models/compute/server_tests.rb
2013
- - tests/vcloud/models/compute/servers_tests.rb
2014
- - tests/vcloud/models/compute/vapp_tests.rb
2015
- - tests/vcloud/models/compute/vapps_tests.rb
2016
- - tests/vcloud/models/compute/vdc_tests.rb
2017
- - tests/vcloud/models/compute/vdcs_tests.rb
2018
- - tests/vcloud/requests/compute/disk_configure_tests.rb
2019
- - tests/vcloud_director/ensure_list_tests.rb
2020
- - tests/vcloud_director/fixtures/test.iso
2021
- - tests/vcloud_director/fixtures/vapp.xml
2022
- - tests/vcloud_director/fixtures/vm.xml
2023
- - tests/vcloud_director/generators/compute/compose_vapp_tests.rb
2024
- - tests/vcloud_director/models/compute/catalog_items_tests.rb
2025
- - tests/vcloud_director/models/compute/catalogs_tests.rb
2026
- - tests/vcloud_director/models/compute/helper.rb
2027
- - tests/vcloud_director/models/compute/media_tests.rb
2028
- - tests/vcloud_director/models/compute/network_tests.rb
2029
- - tests/vcloud_director/models/compute/organizations_tests.rb
2030
- - tests/vcloud_director/models/compute/tasks_tests.rb
2031
- - tests/vcloud_director/models/compute/vapp_life_cycle_tests.rb
2032
- - tests/vcloud_director/models/compute/vapp_template_tests.rb
2033
- - tests/vcloud_director/models/compute/vapp_tests.rb
2034
- - tests/vcloud_director/models/compute/vdcs_tests.rb
2035
- - tests/vcloud_director/models/compute/vms_tests.rb
2036
- - tests/vcloud_director/requests/compute/admin_tests.rb
2037
- - tests/vcloud_director/requests/compute/catalog_tests.rb
2038
- - tests/vcloud_director/requests/compute/disk_tests.rb
2039
- - tests/vcloud_director/requests/compute/edge_gateway_tests.rb
2040
- - tests/vcloud_director/requests/compute/groups_tests.rb
2041
- - tests/vcloud_director/requests/compute/helper.rb
2042
- - tests/vcloud_director/requests/compute/media_tests.rb
2043
- - tests/vcloud_director/requests/compute/network_tests.rb
2044
- - tests/vcloud_director/requests/compute/organization_tests.rb
2045
- - tests/vcloud_director/requests/compute/ovf_descriptor_tests.rb
2046
- - tests/vcloud_director/requests/compute/query_tests.rb
2047
- - tests/vcloud_director/requests/compute/schema_helper.rb
2048
- - tests/vcloud_director/requests/compute/session_tests.rb
2049
- - tests/vcloud_director/requests/compute/supported_systems_tests.rb
2050
- - tests/vcloud_director/requests/compute/task_tests.rb
2051
- - tests/vcloud_director/requests/compute/users_tests.rb
2052
- - tests/vcloud_director/requests/compute/vapp_tests.rb
2053
- - tests/vcloud_director/requests/compute/vdc_storage_profile_tests.rb
2054
- - tests/vcloud_director/requests/compute/vdc_tests.rb
2055
- - tests/vcloud_director/requests/compute/versions_tests.rb
2056
- - tests/vcloud_director/requests/compute/vm_tests.rb
2057
- - tests/watchr.rb
1836
+ test_files: []
data/.github/stale.yml DELETED
@@ -1,17 +0,0 @@
1
- # Number of days of inactivity before an issue becomes stale
2
- daysUntilStale: 60
3
- # Number of days of inactivity before a stale issue is closed
4
- daysUntilClose: 7
5
- # Issues with these labels will never be considered stale
6
- exemptLabels:
7
- - pinned
8
- - security
9
- # Label to use when marking an issue as stale
10
- staleLabel: wontfix
11
- # Comment to post when marking an issue as stale. Set to `false` to disable
12
- markComment: >
13
- This issue has been automatically marked stale due to inactivity.
14
- It will be closed if no further activity occurs.
15
- Thank you for your contributions.
16
- # Comment to post when closing a stale issue. Set to `false` to disable
17
- closeComment: false