influxdb-rails 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6043a39228e51f7da4660eb6eb13317b6b781073
4
- data.tar.gz: c19846957b9bd9a721ab9b0b3ab6c4e85b8cbb86
3
+ metadata.gz: d51ceaa19c7a2f31eb8a9870c709e50da893d2c5
4
+ data.tar.gz: c7889b9c6758f536e2b438ed6fc4782d8e6d831d
5
5
  SHA512:
6
- metadata.gz: 39d353ef9febd01091652bb991b1c40bef3e82360833f1480f495059554f594505b53b7adb9e1d302f84b8a977b2f2e1e650a87f07ef545a46f920d947fb3b45
7
- data.tar.gz: 40b8a7b0bcdee10c5b558b07e503c1746b8939df6c5b805147301b94896e63c2ee94d9668ff71bfc7eef981cb570ffe34291cf76b9de3b304daee88325eadb2a
6
+ metadata.gz: d40b3c83bd9c0cd1888cc94a5af6cd3057262a8a2f50fc4b1acffadb009d50d8beff6575af1e37bfcc8d51e8c9954b0a8b1639390f5b448c9a4030abc3d84ea6
7
+ data.tar.gz: 1be30f8d655c7989dcfcb68bdb65b4c16fda7b58f12f570f9a500d407d39d44470e43b32b609111beef322006dd3a8525c0106e04f7e09a35c0afb586960a327
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- influxdb-rails (0.1.1)
4
+ influxdb-rails (0.1.2)
5
5
  influxdb
6
6
  railties
7
7
 
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
- influxdb-ruby
2
- =============
1
+ influxdb-rails
2
+ ==============
3
3
 
4
4
  [![Build Status](https://travis-ci.org/influxdb/influxdb-rails.png?branch=master)](https://travis-ci.org/influxdb/influxdb-rails)
5
5
 
@@ -17,13 +17,13 @@ Or add it to your `Gemfile`, etc.
17
17
  Usage
18
18
  -----
19
19
 
20
- Create a barebones initializer:
20
+ To get things set up, just create an initializer:
21
21
 
22
22
  ```
23
23
  $ rails g influxdb
24
24
  ```
25
25
 
26
- Then, you can edit the file at `config/initializers/influxdb-rails.rb`. The default config should look like this:
26
+ Then, you can edit the file at `config/initializers/influxdb-rails.rb`. The default config should look something like this:
27
27
 
28
28
  ``` ruby
29
29
  InfluxDB::Rails.configure do |config|
@@ -32,5 +32,9 @@ InfluxDB::Rails.configure do |config|
32
32
  config.influxdb_password = "root"
33
33
  config.influxdb_host = "localhost"
34
34
  config.influxdb_port = 8086
35
+
36
+ # config.series_name_for_controller_runtimes = "rails.controller"
37
+ # config.series_name_for_view_runtimes = "rails.view"
38
+ # config.series_name_for_db_runtimes = "rails.db"
35
39
  end
36
40
  ```
@@ -50,7 +50,7 @@ module InfluxDB
50
50
  :dimensions => exception_presenter.dimensions
51
51
 
52
52
  rescue => e
53
- log :info, "[InfluxDB] Something went terribly wrong. Exception failed to take off! #{e.class}: #{e.message}"
53
+ log :info, "[InfluxDB::Rails] Something went terribly wrong. Exception failed to take off! #{e.class}: #{e.message}"
54
54
  end
55
55
  end
56
56
  alias_method :transmit, :report_exception
@@ -63,14 +63,18 @@ module InfluxDB
63
63
  method = "#{payload[:controller]}##{payload[:action]}"
64
64
  hostname = Socket.gethostname
65
65
 
66
- client.write_point configuration.series_name_for_controller_runtimes,
67
- :value => controller_runtime, :method => method, :server => hostname
66
+ begin
67
+ client.write_point configuration.series_name_for_controller_runtimes,
68
+ :value => controller_runtime, :method => method, :server => hostname
68
69
 
69
- client.write_point configuration.series_name_for_view_runtimes,
70
- :value => view_runtime, :method => method, :server => hostname
70
+ client.write_point configuration.series_name_for_view_runtimes,
71
+ :value => view_runtime, :method => method, :server => hostname
71
72
 
72
- client.write_point configuration.series_name_for_db_runtimes,
73
- :value => db_runtime, :method => method, :server => hostname
73
+ client.write_point configuration.series_name_for_db_runtimes,
74
+ :value => db_runtime, :method => method, :server => hostname
75
+ rescue => e
76
+ log :error, "[InfluxDB::Rails] Unable to write points: #{e.message}"
77
+ end
74
78
  end
75
79
 
76
80
  def current_timestamp
@@ -1,5 +1,5 @@
1
1
  module InfluxDB
2
2
  module Rails
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
@@ -3903,3 +3903,206 @@ Completed 200 OK in 0.2ms (Views: 0.1ms)
3903
3903
  Started GET "/widgets" for 127.0.0.1 at 2014-02-06 13:04:39 -0500
3904
3904
  Processing by WidgetsController#index as HTML
3905
3905
  Completed 200 OK in 0.3ms (Views: 0.2ms)
3906
+ Processing by WidgetsController#new as HTML
3907
+ Completed 500 Internal Server Error in 0.3ms
3908
+ Processing by WidgetsController#index as HTML
3909
+ Completed 200 OK in 6.7ms (Views: 6.6ms)
3910
+ Started GET "/widgets/new" for 127.0.0.1 at 2014-02-11 15:30:10 -0500
3911
+ Processing by WidgetsController#new as HTML
3912
+ Completed 500 Internal Server Error in 0.2ms
3913
+
3914
+ ZeroDivisionError (divided by 0):
3915
+ app.rb:21:in `/'
3916
+ app.rb:21:in `new'
3917
+ actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3918
+ actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
3919
+ actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
3920
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3921
+ activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__299580852659959911__process_action__660150458034573814__callbacks'
3922
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
3923
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3924
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
3925
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
3926
+ actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
3927
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3928
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
3929
+ activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3930
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
3931
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3932
+ actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
3933
+ actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
3934
+ actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
3935
+ actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
3936
+ actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3937
+ actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
3938
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
3939
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3940
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
3941
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
3942
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
3943
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
3944
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
3945
+ actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3946
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
3947
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
3948
+ actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
3949
+ actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3950
+ actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
3951
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
3952
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
3953
+ actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
3954
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3955
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__1229681075500843357__call__2332598057171545277__callbacks'
3956
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
3957
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3958
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
3959
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3960
+ actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3961
+ actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3962
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3963
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3964
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
3965
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
3966
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
3967
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
3968
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3969
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
3970
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
3971
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3972
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
3973
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
3974
+ /Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
3975
+ /Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
3976
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
3977
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
3978
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
3979
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
3980
+ rack-test (0.6.2) lib/rack/test.rb:123:in `request'
3981
+ actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
3982
+ actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
3983
+ actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
3984
+ /Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
3985
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
3986
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
3987
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
3988
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
3989
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
3990
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
3991
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
3992
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
3993
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
3994
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
3995
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
3996
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
3997
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
3998
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
3999
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
4000
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
4001
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
4002
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
4003
+
4004
+
4005
+ Started GET "/widgets" for 127.0.0.1 at 2014-02-11 15:30:10 -0500
4006
+ Processing by WidgetsController#index as HTML
4007
+ Completed 200 OK in 0.2ms (Views: 0.2ms)
4008
+ Started GET "/widgets/new" for 127.0.0.1 at 2014-02-11 15:30:10 -0500
4009
+ Processing by WidgetsController#new as HTML
4010
+ Completed 500 Internal Server Error in 0.2ms
4011
+
4012
+ ZeroDivisionError (divided by 0):
4013
+ app.rb:21:in `/'
4014
+ app.rb:21:in `new'
4015
+ actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
4016
+ actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
4017
+ actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
4018
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4019
+ activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__299580852659959911__process_action__660150458034573814__callbacks'
4020
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
4021
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4022
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
4023
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
4024
+ actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
4025
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
4026
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
4027
+ activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4028
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
4029
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4030
+ actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
4031
+ actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
4032
+ actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
4033
+ actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
4034
+ actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4035
+ actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
4036
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
4037
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4038
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
4039
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4040
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
4041
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4042
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
4043
+ actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4044
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
4045
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
4046
+ actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
4047
+ actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4048
+ actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
4049
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
4050
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
4051
+ actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
4052
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
4053
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__1229681075500843357__call__2332598057171545277__callbacks'
4054
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
4055
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4056
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
4057
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4058
+ actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4059
+ actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4060
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4061
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4062
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
4063
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
4064
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
4065
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
4066
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4067
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
4068
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
4069
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4070
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
4071
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
4072
+ /Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
4073
+ /Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
4074
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
4075
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
4076
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
4077
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
4078
+ rack-test (0.6.2) lib/rack/test.rb:123:in `request'
4079
+ actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
4080
+ actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
4081
+ actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
4082
+ /Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:33:in `block (3 levels) in <top (required)>'
4083
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
4084
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
4085
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
4086
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
4087
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
4088
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
4089
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
4090
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
4091
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
4092
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
4093
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
4094
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
4095
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
4096
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
4097
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
4098
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
4099
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
4100
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
4101
+
4102
+
4103
+ Started GET "/widgets" for 127.0.0.1 at 2014-02-11 15:30:10 -0500
4104
+ Processing by WidgetsController#index as HTML
4105
+ Completed 200 OK in 0.2ms (Views: 0.1ms)
4106
+ Started GET "/widgets" for 127.0.0.1 at 2014-02-11 15:30:10 -0500
4107
+ Processing by WidgetsController#index as HTML
4108
+ Completed 200 OK in 0.1ms (Views: 0.1ms)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: influxdb-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Todd Persen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-06 00:00:00.000000000 Z
11
+ date: 2014-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: influxdb