google-cloud-dns 0.29.0 → 0.29.1

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: 6851f05c07f2151e8d3f5a6adbeaa618b918755e5e1047caf6ea31939c5d4e48
4
- data.tar.gz: 4f98ace09e11fed5741ba0ca57e9931be3ac35d3b0198779ef856eaeb66d74f4
3
+ metadata.gz: '0971937836d18a9ee0a094eca937f703c15860557d91a74055260760d9a61323'
4
+ data.tar.gz: d8b8cddbc8c64ee8b35f15b0c35d138a0c4736ad425cba292e3c413a23f93df3
5
5
  SHA512:
6
- metadata.gz: eaa4dd1fd492d431f8aa50981afe3df42221d92e635c32fa29ff448e6c3fc1eb2528628efa597cec2753b53a0989e55c729a66b74725e4888f4962f6067b841c
7
- data.tar.gz: b2ca82134d3aa99c50a998a4e83ec05152a6d8535cadfa947212039983584db9d88d51731234ca9f6953b77034793d757aac8520517a1bcad79c7442b03b7e1d
6
+ metadata.gz: fb3ec64cb29effee7cd231802a146c32d5efee7f53d2844d7504fed499c88b5be68e0220c107bd67c05c7e04e8cad447522e3e0c3828f71d70bfa12c03e55b15
7
+ data.tar.gz: f56b92802b027a524c91ed7b9cd57bd50e0fb44b6eff4e96778f7b5d7025e8df1c0f48e084b7cded334aca1595642db1955758e278eefffa7c0efe03085e95fc
data/.yardopts CHANGED
@@ -1,6 +1,7 @@
1
1
  --no-private
2
2
  --title=Google Cloud DNS
3
3
  --markup markdown
4
+ --markup-provider redcarpet
4
5
 
5
6
  ./lib/**/*.rb
6
7
  -
data/README.md CHANGED
@@ -60,14 +60,14 @@ Google::Apis.logger = my_logger
60
60
 
61
61
  ## Supported Ruby Versions
62
62
 
63
- This library is supported on Ruby 2.0+.
64
-
65
- However, Ruby 2.3 or later is strongly recommended, as earlier releases have
66
- reached or are nearing end-of-life. After June 1, 2018, Google will provide
67
- official support only for Ruby versions that are considered current and
68
- supported by Ruby Core (that is, Ruby versions that are either in normal
69
- maintenance or in security maintenance).
70
- See https://www.ruby-lang.org/en/downloads/branches/ for further details.
63
+ This library is supported on Ruby 2.3+.
64
+
65
+ Google provides official support for Ruby versions that are actively supported
66
+ by Ruby Core—that is, Ruby versions that are either in normal maintenance or
67
+ in security maintenance, and not end of life. Currently, this means Ruby 2.3
68
+ and later. Older versions of Ruby _may_ still work, but are unsupported and not
69
+ recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
70
+ about the Ruby support schedule.
71
71
 
72
72
  ## Versioning
73
73
 
@@ -150,10 +150,10 @@ module Google
150
150
  changes = new(Array(gapi.changes).map do |g|
151
151
  Change.from_gapi g, zone
152
152
  end)
153
- changes.instance_variable_set "@token", gapi.next_page_token
154
- changes.instance_variable_set "@zone", zone
155
- changes.instance_variable_set "@max", max
156
- changes.instance_variable_set "@order", order
153
+ changes.instance_variable_set :@token, gapi.next_page_token
154
+ changes.instance_variable_set :@zone, zone
155
+ changes.instance_variable_set :@max, max
156
+ changes.instance_variable_set :@order, order
157
157
  changes
158
158
  end
159
159
 
@@ -150,11 +150,11 @@ module Google
150
150
  records = new(Array(gapi.rrsets).map do |g|
151
151
  Record.from_gapi g
152
152
  end)
153
- records.instance_variable_set "@token", gapi.next_page_token
154
- records.instance_variable_set "@zone", zone
155
- records.instance_variable_set "@name", name
156
- records.instance_variable_set "@type", type
157
- records.instance_variable_set "@max", max
153
+ records.instance_variable_set :@token, gapi.next_page_token
154
+ records.instance_variable_set :@zone, zone
155
+ records.instance_variable_set :@name, name
156
+ records.instance_variable_set :@type, type
157
+ records.instance_variable_set :@max, max
158
158
  records
159
159
  end
160
160
 
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Dns
19
- VERSION = "0.29.0".freeze
19
+ VERSION = "0.29.1".freeze
20
20
  end
21
21
  end
22
22
  end
@@ -145,9 +145,9 @@ module Google
145
145
  zones = new(Array(gapi.managed_zones).map do |g|
146
146
  Zone.from_gapi g, conn
147
147
  end)
148
- zones.instance_variable_set "@token", gapi.next_page_token
149
- zones.instance_variable_set "@service", conn
150
- zones.instance_variable_set "@max", max
148
+ zones.instance_variable_set :@token, gapi.next_page_token
149
+ zones.instance_variable_set :@service, conn
150
+ zones.instance_variable_set :@max, max
151
151
  zones
152
152
  end
153
153
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.29.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-06-22 00:00:00.000000000 Z
12
+ date: 2018-08-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-cloud-core
@@ -137,6 +137,20 @@ dependencies:
137
137
  - - "~>"
138
138
  - !ruby/object:Gem::Version
139
139
  version: '1.1'
140
+ - !ruby/object:Gem::Dependency
141
+ name: redcarpet
142
+ requirement: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - "~>"
145
+ - !ruby/object:Gem::Version
146
+ version: '3.0'
147
+ type: :development
148
+ prerelease: false
149
+ version_requirements: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - "~>"
152
+ - !ruby/object:Gem::Version
153
+ version: '3.0'
140
154
  - !ruby/object:Gem::Dependency
141
155
  name: rubocop
142
156
  requirement: !ruby/object:Gem::Requirement