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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08d221ea649441bbe4c5692eaae22d9fdc699ac1d7e9366ac8c3d7165a7944d3'
4
- data.tar.gz: 34678c854edd924ee27eeec0e4d30a2ba7fcdde233565cec10117d3733810555
3
+ metadata.gz: e033dd5277e2cb6222fb1046c8b812ccba98c35e5b9adf8f653dc833e4abd0c7
4
+ data.tar.gz: 3466f63659e1e416d235c8a97e31469d97d36d602257a9a9f06caef2db274585
5
5
  SHA512:
6
- metadata.gz: 8f9b8729e66a1a6aa61feb6d5c7135cbe4994e95a2b4db4e860fe5832badcbed13ee8ae369338f6a2a628351e1d54a7f2769d444634e94ecd49540b6cd5f54a2
7
- data.tar.gz: 0c63de24adf757c76bc45f2105f45fbd8dc5618e4711cce4d723aa8410d51a513e476216cf3fdcbcbb755948f417d969016ec0d8369f9a3b4525574cd91f7784
6
+ metadata.gz: 60d5d22f30ba5609967bf847979fb411633c172f4c3dbacdccd7ca4519b6f51307181d1d7d7111b988f6d5945a27e7b8d4431734fd377d875d5ff5b9d1b1174a
7
+ data.tar.gz: f4f815c342991a0386b9a683776b31a4ac3c247e151b51302edfe5c53e8c11962724e9f83a4e6c162051ce2bd77b4905469ffa92a9f21a137229599ffc27619f
@@ -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 != "bonitoo-io" ]]; then
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
@@ -1,5 +1,5 @@
1
1
  ## 1.0.0 [unreleased]
2
2
 
3
3
  ### Features
4
- 1. [#4](https://github.com/bonitoo-io/influxdb-client-ruby/pull/4): Added WriteApi that will be used for Fluentd plugin
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
- [![CircleCI](https://circleci.com/gh/bonitoo-io/influxdb-client-ruby.svg?style=svg)](https://circleci.com/gh/bonitoo-io/influxdb-client-ruby)
4
- [![codecov](https://codecov.io/gh/bonitoo-io/influxdb-client-ruby/branch/master/graph/badge.svg)](https://codecov.io/gh/bonitoo-io/influxdb-client-ruby)
3
+ [![CircleCI](https://circleci.com/gh/influxdata/influxdb-client-ruby.svg?style=svg)](https://circleci.com/gh/influxdata/influxdb-client-ruby)
4
+ [![codecov](https://codecov.io/gh/influxdata/influxdb-client-ruby/branch/master/graph/badge.svg)](https://codecov.io/gh/influxdata/influxdb-client-ruby)
5
5
  [![Gem Version](https://badge.fury.io/rb/influxdb-client.svg)](https://badge.fury.io/rb/influxdb-client)
6
- [![License](https://img.shields.io/github/license/bonitoo-io/influxdb-client-ruby.svg)](https://github.com/bonitoo-io/influxdb-client-ruby/blob/master/LICENSE)
7
- [![GitHub issues](https://img.shields.io/github/issues-raw/bonitoo-io/influxdb-client-ruby.svg)](https://github.com/bonitoo-io/influxdb-client-ruby/issues)
8
- [![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/bonitoo-io/influxdb-client-ruby.svg)](https://github.com/bonitoo-io/influxdb-client-ruby/pulls)
6
+ [![License](https://img.shields.io/github/license/influxdata/influxdb-client-ruby.svg)](https://github.com/influxdata/influxdb-client-ruby/blob/master/LICENSE)
7
+ [![GitHub issues](https://img.shields.io/github/issues-raw/influxdata/influxdb-client-ruby.svg)](https://github.com/influxdata/influxdb-client-ruby/issues)
8
+ [![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/influxdata/influxdb-client-ruby.svg)](https://github.com/influxdata/influxdb-client-ruby/pulls)
9
+ [![Slack Status](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](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/bonitoo-io/influxdb-client-ruby/blob/master/lib/influxdb/client/point.rb#L28) structure
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/bonitoo-io/influxdb-client-ruby.
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
 
@@ -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/bonitoo-io/influxdb-client-ruby'
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/bonitoo-io/influxdb-client-ruby'
38
- spec.metadata['changelog_uri'] = 'https://raw.githubusercontent.com/bonitoo-io/influxdb-client-ruby/master/CHANGELOG.md'
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.165
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-13 00:00:00.000000000 Z
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/bonitoo-io/influxdb-client-ruby
156
+ homepage: https://github.com/influxdata/influxdb-client-ruby
157
157
  licenses:
158
158
  - MIT
159
159
  metadata:
160
- homepage_uri: https://github.com/bonitoo-io/influxdb-client-ruby
161
- source_code_uri: https://github.com/bonitoo-io/influxdb-client-ruby
162
- changelog_uri: https://raw.githubusercontent.com/bonitoo-io/influxdb-client-ruby/master/CHANGELOG.md
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: