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 +4 -4
- data/.yardopts +7 -1
- data/README.md +29 -9
- data/lib/stackdriver/core/async_actor.rb +3 -3
- data/lib/stackdriver/core/version.rb +1 -1
- metadata +21 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ca3e89369f51c4d2d815943888e068953d9bed387ab4576f05b307e3f344df4
|
4
|
+
data.tar.gz: 28f34466ca670a0e3bc7984986f88794ea281ca19d6ee5d8c247ca803ba54ff2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4db8f3e2f2d26836ee16daa11455fdf5298ba742aa138fd9a45776245ef028b94e502dddc36d9986b2c74a489f7cb27bae7a8a6bf942d2b601fac4e5e927871
|
7
|
+
data.tar.gz: ae5314aa0a31b88f4dce10502928416d2600cd2136b75b81ba6b162ffe49ca5ff68eec3f5156b396ee0ad014905df266de94429e53049f67f2488121324f9043
|
data/.yardopts
CHANGED
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
|
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
|
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.
|
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
|
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
|
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
|
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
|
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
|
32
|
-
|
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]
|
326
|
-
# wait timeout.
|
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
|
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.
|
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-
|
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.
|
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.
|
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.
|
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
|