fog-brightbox 0.11.0 → 0.12.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
  SHA1:
3
- metadata.gz: f78b9cfb19a9695c3f61d48c1531e65fadecd5ba
4
- data.tar.gz: c56ae129b326f0b8319346012659e3dba8f4d402
3
+ metadata.gz: f2310b1ba021705f6f588c79f948b4da36603b73
4
+ data.tar.gz: 08d7361511400bb0446fbe9f6c56b93a1be50210
5
5
  SHA512:
6
- metadata.gz: 9f74b56fee22796c8cafc290643723c9f7ffbcd41ed6ba3c47f03c5ae104ade57c46cffa5b972407392242fa9d51066aa2c621e9dc54a8f05fa79c544e5b782b
7
- data.tar.gz: 1deee7feb6c5fcdfda834c3735d049cc9f3dbeb9d52434ea78fb8ab9ad8c4f4b8135ad475deac6dcba4766e9200ad3a2fcdef084c2eb1ab56463b42e7eb1b2d2
6
+ metadata.gz: 4aa4de701de5ae6712607e73bbfaec9538bab7e60fe8eabdf0e749e28675d838dd6e2740054ec0485cae9d377a6636647c2030527f72eace4a0b30cff11bce44
7
+ data.tar.gz: f7defbd721be6ef8a812529de764f7706b925b11da4df0cbe30aae32e947f3a88f0ea6215fe31aa38f0cc5e5cde4f9bca9ff67215fbb5d0ac28041a385cd9e8b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
+ ### 0.12.0 / 2017-07-19
2
+
3
+ Enhancements:
4
+
5
+ * Exposed `domains` field on load balancers to support Let's Encrypt via models
6
+
7
+ Bug fixes:
8
+
9
+ * Ruby 1.9 Gemfile was locked down against `webmock` and `public_suffix`
10
+ dropping support for Ruby 2.0
11
+
1
12
  ### 0.11.0 / 2016-07-05
2
13
 
3
- Enchancements:
14
+ Enhancements:
4
15
 
5
16
  * Exposed fields on database servers related to automatic scheduled snapshots.
6
17
 
data/README.md CHANGED
@@ -47,9 +47,7 @@ specify in your application's `Gemfile`
47
47
 
48
48
  ## Contributing
49
49
 
50
- `fog` modules are kept within the main repo.
51
-
52
- 1. Fork it ( http://github.com/fog/fog/fork )
50
+ 1. Fork it ( https://github.com/fog/fog-brightbox/fork )
53
51
  2. Create your feature branch (`git checkout -b my-new-feature`)
54
52
  3. Commit your changes (`git commit -am 'Add some feature'`)
55
53
  4. Push to the branch (`git push origin my-new-feature`)
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.description = %q(Module for the 'fog' gem to support Brightbox Cloud)
12
12
  spec.summary = %q(This library can be used as a module for `fog` or as standalone provider
13
13
  to use the Brightbox Cloud in applications)
14
- spec.homepage = ""
14
+ spec.homepage = "https://github.com/fog/fog-brightbox"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
@@ -1,5 +1,8 @@
1
1
  source "https://rubygems.org"
2
2
 
3
+ # Some other dependencies are clashing on this
4
+ gem "public_suffix", "~> 1.4.6"
3
5
  gem "net-ssh", "< 3.0"
6
+ gem "webmock", "~> 2.3.2"
4
7
 
5
8
  gemspec :path => ".."
@@ -20,12 +20,16 @@ module Fog
20
20
  attribute :telephone_number
21
21
  attribute :verified_telephone
22
22
  attribute :verified_ip
23
+ attribute :servers_used
23
24
  attribute :ram_limit
24
25
  attribute :ram_used
25
26
  attribute :cloud_ips_limit
26
27
  attribute :cloud_ips_used
27
28
  attribute :load_balancers_limit
28
29
  attribute :load_balancers_used
30
+ attribute :dbs_servers_used
31
+ attribute :dbs_ram_limit
32
+ attribute :dbs_ram_used
29
33
  attribute :library_ftp_host
30
34
  attribute :library_ftp_user
31
35
  # This is always returned as nil unless after a call to reset_ftp_password
@@ -29,6 +29,9 @@ module Fog
29
29
  attribute :certificate_subject
30
30
  attribute :certificate_enable_ssl3
31
31
 
32
+ # List of domains for ACME
33
+ attribute :domains
34
+
32
35
  # Times
33
36
  attribute :created_at, :type => :time
34
37
  attribute :deleted_at, :type => :time
@@ -51,6 +54,7 @@ module Fog
51
54
  :healthcheck => healthcheck,
52
55
  :policy => policy,
53
56
  :name => name,
57
+ :domains => domains,
54
58
  :buffer_size => buffer_size,
55
59
  :certificate_pem => certificate_pem,
56
60
  :certificate_private_key => certificate_private_key,
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Brightbox
3
- VERSION = "0.11.0"
3
+ VERSION = "0.12.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-brightbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Thornthwaite
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-05 00:00:00.000000000 Z
11
+ date: 2017-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core
@@ -440,7 +440,7 @@ files:
440
440
  - tests/helpers/responds_to_helper.rb
441
441
  - tests/helpers/schema_validator_tests.rb
442
442
  - tests/helpers/succeeds_helper.rb
443
- homepage: ''
443
+ homepage: https://github.com/fog/fog-brightbox
444
444
  licenses:
445
445
  - MIT
446
446
  metadata: {}
@@ -460,7 +460,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
460
460
  version: '0'
461
461
  requirements: []
462
462
  rubyforge_project:
463
- rubygems_version: 2.4.8
463
+ rubygems_version: 2.6.2
464
464
  signing_key:
465
465
  specification_version: 4
466
466
  summary: This library can be used as a module for `fog` or as standalone provider