influxdb-rails 0.4.3 → 0.4.999
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +8 -0
- data/.rspec +2 -0
- data/.travis.yml +28 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +22 -0
- data/README.md +116 -16
- data/influxdb-rails.gemspec +20 -9
- data/lib/influxdb/rails/version.rb +1 -1
- data/spec/support/rails4/log/test.log +5914 -5810
- data/spec/support/rails5/log/test.log +18763 -2653
- metadata +36 -24
- data/Gemfile.lock +0 -99
- data/pkg/influxdb-rails-0.1.11.gem +0 -0
- data/pkg/influxdb-rails-0.1.12.gem +0 -0
- data/pkg/influxdb-rails-0.4.0.gem +0 -0
- data/pkg/influxdb-rails-0.4.2.gem +0 -0
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: influxdb-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.999
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Christian Bruckmayer
|
8
|
+
- Henne Vogelsang
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2019-10-02 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: influxdb
|
@@ -136,17 +137,21 @@ dependencies:
|
|
136
137
|
- - ">="
|
137
138
|
- !ruby/object:Gem::Version
|
138
139
|
version: '0'
|
139
|
-
description: This gem automatically instruments your Ruby on Rails
|
140
|
-
|
140
|
+
description: This gem automatically instruments your Ruby on Rails application using
|
141
|
+
InfluxDB.
|
141
142
|
email:
|
142
|
-
-
|
143
|
+
- christian@bruckmayer.net
|
144
|
+
- hvogel@hennevogel.de
|
143
145
|
executables: []
|
144
146
|
extensions: []
|
145
147
|
extra_rdoc_files: []
|
146
148
|
files:
|
149
|
+
- ".gitignore"
|
150
|
+
- ".rspec"
|
151
|
+
- ".travis.yml"
|
147
152
|
- CHANGELOG.md
|
148
153
|
- Gemfile
|
149
|
-
-
|
154
|
+
- LICENSE.txt
|
150
155
|
- README.md
|
151
156
|
- Rakefile
|
152
157
|
- config.ru
|
@@ -170,10 +175,6 @@ files:
|
|
170
175
|
- lib/influxdb/rails/version.rb
|
171
176
|
- lib/rails/generators/influxdb/influxdb_generator.rb
|
172
177
|
- lib/rails/generators/influxdb/templates/initializer.rb
|
173
|
-
- pkg/influxdb-rails-0.1.11.gem
|
174
|
-
- pkg/influxdb-rails-0.1.12.gem
|
175
|
-
- pkg/influxdb-rails-0.4.0.gem
|
176
|
-
- pkg/influxdb-rails-0.4.2.gem
|
177
178
|
- spec/controllers/widgets_controller_spec.rb
|
178
179
|
- spec/integration/exceptions_spec.rb
|
179
180
|
- spec/integration/integration_helper.rb
|
@@ -182,6 +183,7 @@ files:
|
|
182
183
|
- spec/support/rails4/app.rb
|
183
184
|
- spec/support/rails4/log/test.log
|
184
185
|
- spec/support/rails5/app.rb
|
186
|
+
- spec/support/rails5/log/development.log
|
185
187
|
- spec/support/rails5/log/test.log
|
186
188
|
- spec/unit/backtrace_spec.rb
|
187
189
|
- spec/unit/configuration_spec.rb
|
@@ -190,8 +192,18 @@ files:
|
|
190
192
|
homepage: http://influxdb.com
|
191
193
|
licenses:
|
192
194
|
- MIT
|
193
|
-
metadata:
|
194
|
-
|
195
|
+
metadata:
|
196
|
+
bug_tracker_uri: https://github.com/influxdata/influxdb-rails/issues
|
197
|
+
changelog_uri: https://github.com/influxdata/influxdb-rails/blob/master/CHANGELOG.md
|
198
|
+
documentation_uri: https://github.com/influxdata/influxdb-rails/blob/master/README.md
|
199
|
+
source_code_uri: https://github.com/influxdata/influxdb-rails
|
200
|
+
post_install_message: |2+
|
201
|
+
|
202
|
+
This is the last supported version of influxdb-rails in the 0.4 series. The
|
203
|
+
next release will be 1.0 with quite a lot of breaking changes. For details:
|
204
|
+
|
205
|
+
https://github.com/influxdata/influxdb-rails/wiki/1.0-Upgrade-Guide
|
206
|
+
|
195
207
|
rdoc_options: []
|
196
208
|
require_paths:
|
197
209
|
- lib
|
@@ -206,22 +218,22 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
218
|
- !ruby/object:Gem::Version
|
207
219
|
version: '0'
|
208
220
|
requirements: []
|
209
|
-
|
210
|
-
rubygems_version: 2.6.13
|
221
|
+
rubygems_version: 3.0.1
|
211
222
|
signing_key:
|
212
223
|
specification_version: 4
|
213
224
|
summary: InfluxDB bindings for Ruby on Rails.
|
214
225
|
test_files:
|
215
|
-
- spec/
|
226
|
+
- spec/spec_helper.rb
|
216
227
|
- spec/unit/influxdb_rails_spec.rb
|
217
228
|
- spec/unit/backtrace_spec.rb
|
218
229
|
- spec/unit/configuration_spec.rb
|
219
|
-
- spec/
|
220
|
-
- spec/controllers/widgets_controller_spec.rb
|
221
|
-
- spec/support/rails5/log/test.log
|
222
|
-
- spec/support/rails5/app.rb
|
223
|
-
- spec/support/rails4/log/test.log
|
224
|
-
- spec/support/rails4/app.rb
|
225
|
-
- spec/integration/metrics_spec.rb
|
226
|
-
- spec/integration/integration_helper.rb
|
230
|
+
- spec/unit/exception_presenter_spec.rb
|
227
231
|
- spec/integration/exceptions_spec.rb
|
232
|
+
- spec/integration/integration_helper.rb
|
233
|
+
- spec/integration/metrics_spec.rb
|
234
|
+
- spec/support/rails4/app.rb
|
235
|
+
- spec/support/rails4/log/test.log
|
236
|
+
- spec/support/rails5/app.rb
|
237
|
+
- spec/support/rails5/log/test.log
|
238
|
+
- spec/support/rails5/log/development.log
|
239
|
+
- spec/controllers/widgets_controller_spec.rb
|
data/Gemfile.lock
DELETED
@@ -1,99 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
influxdb-rails (0.4.3)
|
5
|
-
influxdb (~> 0.5.0)
|
6
|
-
railties (> 3)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
actionpack (5.1.3)
|
12
|
-
actionview (= 5.1.3)
|
13
|
-
activesupport (= 5.1.3)
|
14
|
-
rack (~> 2.0)
|
15
|
-
rack-test (~> 0.6.3)
|
16
|
-
rails-dom-testing (~> 2.0)
|
17
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
18
|
-
actionview (5.1.3)
|
19
|
-
activesupport (= 5.1.3)
|
20
|
-
builder (~> 3.1)
|
21
|
-
erubi (~> 1.4)
|
22
|
-
rails-dom-testing (~> 2.0)
|
23
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
24
|
-
activesupport (5.1.3)
|
25
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
26
|
-
i18n (~> 0.7)
|
27
|
-
minitest (~> 5.1)
|
28
|
-
tzinfo (~> 1.1)
|
29
|
-
builder (3.2.3)
|
30
|
-
concurrent-ruby (1.0.5)
|
31
|
-
diff-lcs (1.3)
|
32
|
-
erubi (1.6.1)
|
33
|
-
fakeweb (1.3.0)
|
34
|
-
i18n (0.8.6)
|
35
|
-
influxdb (0.5.1)
|
36
|
-
loofah (2.0.3)
|
37
|
-
nokogiri (>= 1.5.9)
|
38
|
-
method_source (0.8.2)
|
39
|
-
mini_portile2 (2.2.0)
|
40
|
-
minitest (5.10.3)
|
41
|
-
nokogiri (1.8.0)
|
42
|
-
mini_portile2 (~> 2.2.0)
|
43
|
-
rack (2.0.3)
|
44
|
-
rack-test (0.6.3)
|
45
|
-
rack (>= 1.0)
|
46
|
-
rails-dom-testing (2.0.3)
|
47
|
-
activesupport (>= 4.2.0)
|
48
|
-
nokogiri (>= 1.6)
|
49
|
-
rails-html-sanitizer (1.0.3)
|
50
|
-
loofah (~> 2.0)
|
51
|
-
railties (5.1.3)
|
52
|
-
actionpack (= 5.1.3)
|
53
|
-
activesupport (= 5.1.3)
|
54
|
-
method_source
|
55
|
-
rake (>= 0.8.7)
|
56
|
-
thor (>= 0.18.1, < 2.0)
|
57
|
-
rake (12.0.0)
|
58
|
-
rdoc (5.1.0)
|
59
|
-
rspec (3.6.0)
|
60
|
-
rspec-core (~> 3.6.0)
|
61
|
-
rspec-expectations (~> 3.6.0)
|
62
|
-
rspec-mocks (~> 3.6.0)
|
63
|
-
rspec-core (3.6.0)
|
64
|
-
rspec-support (~> 3.6.0)
|
65
|
-
rspec-expectations (3.6.0)
|
66
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
67
|
-
rspec-support (~> 3.6.0)
|
68
|
-
rspec-mocks (3.6.0)
|
69
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
70
|
-
rspec-support (~> 3.6.0)
|
71
|
-
rspec-rails (3.6.1)
|
72
|
-
actionpack (>= 3.0)
|
73
|
-
activesupport (>= 3.0)
|
74
|
-
railties (>= 3.0)
|
75
|
-
rspec-core (~> 3.6.0)
|
76
|
-
rspec-expectations (~> 3.6.0)
|
77
|
-
rspec-mocks (~> 3.6.0)
|
78
|
-
rspec-support (~> 3.6.0)
|
79
|
-
rspec-support (3.6.0)
|
80
|
-
thor (0.20.0)
|
81
|
-
thread_safe (0.3.6)
|
82
|
-
tzinfo (1.2.3)
|
83
|
-
thread_safe (~> 0.1)
|
84
|
-
|
85
|
-
PLATFORMS
|
86
|
-
ruby
|
87
|
-
|
88
|
-
DEPENDENCIES
|
89
|
-
bundler (>= 1.0.0)
|
90
|
-
fakeweb
|
91
|
-
influxdb-rails!
|
92
|
-
rake
|
93
|
-
rdoc
|
94
|
-
rspec
|
95
|
-
rspec-rails (>= 3.0.0)
|
96
|
-
tzinfo
|
97
|
-
|
98
|
-
BUNDLED WITH
|
99
|
-
1.16.0
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|