influxdb-rails 0.1.0 → 0.1.1
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/Gemfile.lock +1 -1
- data/lib/influxdb-rails.rb +18 -0
- data/lib/influxdb/rails/configuration.rb +9 -0
- data/lib/influxdb/rails/railtie.rb +1 -22
- data/lib/influxdb/rails/version.rb +1 -1
- data/lib/rails/generators/influxdb/templates/initializer.rb +4 -0
- data/spec/integration/metrics_spec.rb +23 -0
- data/spec/support/rails3/log/test.log +2391 -0
- metadata +3 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: influxdb-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Todd Persen
|
@@ -176,6 +176,7 @@ files:
|
|
176
176
|
- spec/controllers/widgets_controller_spec.rb
|
177
177
|
- spec/integration/exceptions_spec.rb
|
178
178
|
- spec/integration/integration_helper.rb
|
179
|
+
- spec/integration/metrics_spec.rb
|
179
180
|
- spec/spec_helper.rb
|
180
181
|
- spec/suite.sh
|
181
182
|
- spec/support/rails3/app.rb
|
@@ -213,6 +214,7 @@ test_files:
|
|
213
214
|
- spec/controllers/widgets_controller_spec.rb
|
214
215
|
- spec/integration/exceptions_spec.rb
|
215
216
|
- spec/integration/integration_helper.rb
|
217
|
+
- spec/integration/metrics_spec.rb
|
216
218
|
- spec/spec_helper.rb
|
217
219
|
- spec/suite.sh
|
218
220
|
- spec/support/rails3/app.rb
|