stackdriver-core 1.3.0 → 1.3.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: 6c6ef552f209b36ad5abc3ccbad6df179289ce5632b031fe33380aeea6dd695d
4
- data.tar.gz: 4cfb1f1ff935e105789df3d93420cf788a08acf7939b6c7b5f1fc8eca4083b86
3
+ metadata.gz: 0ca3e89369f51c4d2d815943888e068953d9bed387ab4576f05b307e3f344df4
4
+ data.tar.gz: 28f34466ca670a0e3bc7984986f88794ea281ca19d6ee5d8c247ca803ba54ff2
5
5
  SHA512:
6
- metadata.gz: af74f8cd44085dad4f62c112ad2c0d7ef041583e04f4b4d575a16c01b6308258b98ab91468b9a7fec9305dfa0433bf063c3c7ecf3bb7c7ed19a2c9a4ea35bc94
7
- data.tar.gz: 82d6b7a67de239556611a318aa979deba3efeba24bc300b68ca000e4837ab98395afa52b9535a04b52cab676730c2ceb0b209627b280f77b470fda6ad049a079
6
+ metadata.gz: c4db8f3e2f2d26836ee16daa11455fdf5298ba742aa138fd9a45776245ef028b94e502dddc36d9986b2c74a489f7cb27bae7a8a6bf942d2b601fac4e5e927871
7
+ data.tar.gz: ae5314aa0a31b88f4dce10502928416d2600cd2136b75b81ba6b162ffe49ca5ff68eec3f5156b396ee0ad014905df266de94429e53049f67f2488121324f9043
data/.yardopts CHANGED
@@ -1,7 +1,13 @@
1
1
  --no-private
2
2
  --title=Stackdriver Core
3
3
  --markup markdown
4
+ --markup-provider redcarpet
5
+ --main OVERVIEW.md
4
6
 
5
7
  ./lib/**/*.rb
6
8
  -
7
- README.md
9
+ OVERVIEW.md
10
+ CONTRIBUTING.md
11
+ CHANGELOG.md
12
+ CODE_OF_CONDUCT.md
13
+ LICENSE
data/README.md CHANGED
@@ -1,32 +1,52 @@
1
1
  # stackdriver-core
2
2
 
3
- This library contains shared types and utilities for Stackdriver-related libraries. Please see the top-level project [README](../README.md) for general information.
3
+ This library contains shared types and utilities for Stackdriver-related
4
+ libraries. Please see the [GitHub
5
+ repository](https://github.com/GoogleCloudPlatform/google-cloud-ruby) for more
6
+ information about the individual google-cloud gems.
4
7
 
5
- - [stackdriver-core API documentation](http://googlecloudplatform.github.io/google-cloud-ruby/#/docs/stackdriver-core/master/stackdriver/core)
8
+ - [stackdriver-core API documentation](http://googlecloudplatform.github.io/google-cloud-ruby/docs/stackdriver-core/latest)
6
9
 
7
10
  ## Supported Ruby Versions
8
11
 
9
- This library is supported on Ruby 2.0+.
12
+ This library is supported on Ruby 2.3+.
13
+
14
+ Google provides official support for Ruby versions that are actively supported
15
+ by Ruby Core—that is, Ruby versions that are either in normal maintenance or in
16
+ security maintenance, and not end of life. Currently, this means Ruby 2.3 and
17
+ later. Older versions of Ruby _may_ still work, but are unsupported and not
18
+ recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
19
+ about the Ruby support schedule.
10
20
 
11
21
  ## Versioning
12
22
 
13
23
  This library follows [Semantic Versioning](http://semver.org/).
14
24
 
15
- It is currently in major version zero (0.y.z), which means that anything may change at any time and the public API should not be considered stable.
25
+ It is currently in major version zero (0.y.z), which means that anything may
26
+ change at any time and the public API should not be considered stable.
16
27
 
17
28
  ## Contributing
18
29
 
19
30
  Contributions to this library are always welcome and highly encouraged.
20
31
 
21
- See the [Contributing Guide](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/guides/contributing) for more information on how to get started.
32
+ See the [Contributing
33
+ Guide](http://googlecloudplatform.github.io/google-cloud-ruby/docs/stackdriver-core/latest/file.CONTRIBUTING)
34
+ for more information on how to get started.
22
35
 
23
- Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [Code of Conduct](../CODE_OF_CONDUCT.md) for more information.
36
+ Please note that this project is released with a Contributor Code of Conduct. By
37
+ participating in this project you agree to abide by its terms. See [Code of
38
+ Conduct](http://googlecloudplatform.github.io/google-cloud-ruby/docs/stackdriver-core/latest/file.CODE_OF_CONDUCT)
39
+ for more information.
24
40
 
25
41
  ## License
26
42
 
27
- This library is licensed under Apache 2.0. Full license text is available in [LICENSE](LICENSE).
43
+ This library is licensed under Apache 2.0. Full license text is available in
44
+ [LICENSE](http://googlecloudplatform.github.io/google-cloud-ruby/docs/stackdriver-core/latest/file.LICENSE).
28
45
 
29
46
  ## Support
30
47
 
31
- Please [report bugs at the project on Github](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues).
32
- Don't hesitate to [ask questions](http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby) about the client or APIs on [StackOverflow](http://stackoverflow.com).
48
+ Please [report bugs at the project on
49
+ Github](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues). Don't
50
+ hesitate to [ask
51
+ questions](http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby)
52
+ about the client or APIs on [StackOverflow](http://stackoverflow.com).
@@ -322,9 +322,9 @@ module Stackdriver
322
322
  ##
323
323
  # @private Set cleanup options.
324
324
  #
325
- # @param [Hash] *kwargs Hash of cleanup options. :timeout is the cleanup
326
- # wait timeout. :wait_interval is the cleanup wait interval. :force for
327
- # forcefully terminate actor when all other options fail.
325
+ # @param [Hash] kwargs Hash of cleanup options. `:timeout` is the cleanup
326
+ # wait timeout. `:wait_interval` is the cleanup wait interval. `:force`
327
+ # for forcefully terminate actor when all other options fail.
328
328
  def set_cleanup_options **kwargs
329
329
  @cleanup_options.merge! kwargs
330
330
  end
@@ -15,6 +15,6 @@
15
15
 
16
16
  module Stackdriver
17
17
  module Core
18
- VERSION = "1.3.0".freeze
18
+ VERSION = "1.3.1".freeze
19
19
  end
20
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stackdriver-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-27 00:00:00.000000000 Z
11
+ date: 2018-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-core
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: 0.50.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: redcarpet
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '3.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '3.0'
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: simplecov
113
127
  requirement: !ruby/object:Gem::Requirement
@@ -140,16 +154,16 @@ dependencies:
140
154
  name: yard-doctest
141
155
  requirement: !ruby/object:Gem::Requirement
142
156
  requirements:
143
- - - "<="
157
+ - - "~>"
144
158
  - !ruby/object:Gem::Version
145
- version: 0.1.8
159
+ version: 0.1.13
146
160
  type: :development
147
161
  prerelease: false
148
162
  version_requirements: !ruby/object:Gem::Requirement
149
163
  requirements:
150
- - - "<="
164
+ - - "~>"
151
165
  - !ruby/object:Gem::Version
152
- version: 0.1.8
166
+ version: 0.1.13
153
167
  description: stackdriver-core is an internal shared library for the Ruby Stackdriver
154
168
  integration libraries.
155
169
  email:
@@ -187,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
187
201
  version: '0'
188
202
  requirements: []
189
203
  rubyforge_project:
190
- rubygems_version: 2.7.6
204
+ rubygems_version: 2.7.7
191
205
  signing_key:
192
206
  specification_version: 4
193
207
  summary: Internal shared library for Ruby Stackdriver integration