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 +4 -4
- data/CHANGELOG.md +12 -1
- data/README.md +1 -3
- data/fog-brightbox.gemspec +1 -1
- data/gemfiles/Gemfile.1.9.3 +3 -0
- data/lib/fog/brightbox/models/compute/account.rb +4 -0
- data/lib/fog/brightbox/models/compute/load_balancer.rb +4 -0
- data/lib/fog/brightbox/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2310b1ba021705f6f588c79f948b4da36603b73
|
4
|
+
data.tar.gz: 08d7361511400bb0446fbe9f6c56b93a1be50210
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
|
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`)
|
data/fog-brightbox.gemspec
CHANGED
@@ -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)
|
data/gemfiles/Gemfile.1.9.3
CHANGED
@@ -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,
|
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.
|
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:
|
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.
|
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
|