influxdb-client 1.0.0.pre.165 → 1.0.0.pre.183
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +1 -1
- data/CHANGELOG.md +1 -1
- data/README.md +8 -7
- data/influxdb-client.gemspec +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e033dd5277e2cb6222fb1046c8b812ccba98c35e5b9adf8f653dc833e4abd0c7
|
|
4
|
+
data.tar.gz: 3466f63659e1e416d235c8a97e31469d97d36d602257a9a9f06caef2db274585
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60d5d22f30ba5609967bf847979fb411633c172f4c3dbacdccd7ca4519b6f51307181d1d7d7111b988f6d5945a27e7b8d4431734fd377d875d5ff5b9d1b1174a
|
|
7
|
+
data.tar.gz: f4f815c342991a0386b9a683776b31a4ac3c247e151b51302edfe5c53e8c11962724e9f83a4e6c162051ce2bd77b4905469ffa92a9f21a137229599ffc27619f
|
data/.circleci/config.yml
CHANGED
|
@@ -100,7 +100,7 @@ jobs:
|
|
|
100
100
|
- run:
|
|
101
101
|
name: Early return if this build is from a forked repository
|
|
102
102
|
command: |
|
|
103
|
-
if [[ $CIRCLE_PROJECT_USERNAME != "
|
|
103
|
+
if [[ $CIRCLE_PROJECT_USERNAME != "influxdata" ]]; then
|
|
104
104
|
echo "Nothing to do for forked repositories, so marking this step successful"
|
|
105
105
|
circleci step halt
|
|
106
106
|
fi
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## 1.0.0 [unreleased]
|
|
2
2
|
|
|
3
3
|
### Features
|
|
4
|
-
1. [#4](https://github.com/
|
|
4
|
+
1. [#4](https://github.com/influxdata/influxdb-client-ruby/pull/4): Added WriteApi that will be used for Fluentd plugin
|
|
5
5
|
|
data/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# influxdb-client-ruby
|
|
2
2
|
|
|
3
|
-
[](https://circleci.com/gh/influxdata/influxdb-client-ruby)
|
|
4
|
+
[](https://codecov.io/gh/influxdata/influxdb-client-ruby)
|
|
5
5
|
[](https://badge.fury.io/rb/influxdb-client)
|
|
6
|
-
[](https://github.com/influxdata/influxdb-client-ruby/blob/master/LICENSE)
|
|
7
|
+
[](https://github.com/influxdata/influxdb-client-ruby/issues)
|
|
8
|
+
[](https://github.com/influxdata/influxdb-client-ruby/pulls)
|
|
9
|
+
[](https://www.influxdata.com/slack)
|
|
9
10
|
|
|
10
11
|
This repository contains the reference Ruby client for the InfluxDB 2.0.
|
|
11
12
|
|
|
@@ -118,7 +119,7 @@ The data could be written as:
|
|
|
118
119
|
|
|
119
120
|
1. `String` that is formatted as a InfluxDB's line protocol
|
|
120
121
|
1. `Hash` with keys: name, tags, fields and time
|
|
121
|
-
1. [Data Point](https://github.com/
|
|
122
|
+
1. [Data Point](https://github.com/influxdata/influxdb-client-ruby/blob/master/lib/influxdb/client/point.rb#L28) structure
|
|
122
123
|
1. `Array` of above items
|
|
123
124
|
|
|
124
125
|
```ruby
|
|
@@ -149,7 +150,7 @@ rake test
|
|
|
149
150
|
|
|
150
151
|
## Contributing
|
|
151
152
|
|
|
152
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
153
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/influxdata/influxdb-client-ruby.
|
|
153
154
|
|
|
154
155
|
## License
|
|
155
156
|
|
data/influxdb-client.gemspec
CHANGED
|
@@ -30,12 +30,12 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
|
|
31
31
|
spec.summary = 'Ruby library for InfluxDB 2.'
|
|
32
32
|
spec.description = 'This is the official Ruby library for InfluxDB 2.'
|
|
33
|
-
spec.homepage = 'https://github.com/
|
|
33
|
+
spec.homepage = 'https://github.com/influxdata/influxdb-client-ruby'
|
|
34
34
|
spec.license = 'MIT'
|
|
35
35
|
|
|
36
36
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
37
|
-
spec.metadata['source_code_uri'] = 'https://github.com/
|
|
38
|
-
spec.metadata['changelog_uri'] = 'https://raw.githubusercontent.com/
|
|
37
|
+
spec.metadata['source_code_uri'] = 'https://github.com/influxdata/influxdb-client-ruby'
|
|
38
|
+
spec.metadata['changelog_uri'] = 'https://raw.githubusercontent.com/influxdata/influxdb-client-ruby/master/CHANGELOG.md'
|
|
39
39
|
|
|
40
40
|
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
|
41
41
|
spec.test_files = spec.files.grep(%r{^(test|spec|features|smoke)/})
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: influxdb-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.pre.
|
|
4
|
+
version: 1.0.0.pre.183
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jakub Bednar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -153,13 +153,13 @@ files:
|
|
|
153
153
|
- test/influxdb/write_api_integration_test.rb
|
|
154
154
|
- test/influxdb/write_api_test.rb
|
|
155
155
|
- test/test_helper.rb
|
|
156
|
-
homepage: https://github.com/
|
|
156
|
+
homepage: https://github.com/influxdata/influxdb-client-ruby
|
|
157
157
|
licenses:
|
|
158
158
|
- MIT
|
|
159
159
|
metadata:
|
|
160
|
-
homepage_uri: https://github.com/
|
|
161
|
-
source_code_uri: https://github.com/
|
|
162
|
-
changelog_uri: https://raw.githubusercontent.com/
|
|
160
|
+
homepage_uri: https://github.com/influxdata/influxdb-client-ruby
|
|
161
|
+
source_code_uri: https://github.com/influxdata/influxdb-client-ruby
|
|
162
|
+
changelog_uri: https://raw.githubusercontent.com/influxdata/influxdb-client-ruby/master/CHANGELOG.md
|
|
163
163
|
post_install_message:
|
|
164
164
|
rdoc_options: []
|
|
165
165
|
require_paths:
|