influxdb-rails 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/Gemfile.lock +2 -2
- data/lib/influxdb-rails.rb +5 -1
- data/lib/influxdb/rails/configuration.rb +11 -0
- data/lib/influxdb/rails/version.rb +1 -1
- data/spec/support/rails3/log/test.log +197 -0
- data/spec/support/rails4/app.rb +0 -2
- metadata +27 -27
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
MTZmZjMzN2Y2MTA1MGZlYmFiZjAwMTE0NDI2YzJjMmUwNTFkMDg2ZA==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b1ccf656dd4f4726a2a565d72f858e872647f268
|
4
|
+
data.tar.gz: 1301f3ddf63d02d73c57d036a6aebd4d1343d363
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
Y2EzYzMwYjJhMGY4ODBhOGQ3ZGZlMzI2ZmYxYzcwMjFjZDMwY2QzYWNkNGI0
|
11
|
-
YWJlMWE5Y2Y4NzcyZjZlYjQzMzQyNmRiNGE3ZmEzYTEwMGU4MTA=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MmE0Yjk3NTg3YzdhZDIyNjY5ZDU3ZWYwY2JmYjI4MWYyYTllYWE0MWE0NjE5
|
14
|
-
MGRkZTQyOWU0OWM2MmNjODBhODY0ZTlhMjZlMDEzMzU3NTgyNjM0YTVlYWNm
|
15
|
-
MWJmM2ZhYmYwYzE4MjJlYWIwZWZhYWQ2NzM1NmM4MjdiMDljMGU=
|
6
|
+
metadata.gz: 3030adc34d6318bab414163bdd02beaa7df84683ea736af288de476c74d04384ce1415f04b70fb067524c17aa86d7aac466003af7bbf1fc90be703dc583d4b2d
|
7
|
+
data.tar.gz: 16de540f7c8193fab83036df3f4122061063d76b40104557649cd97fdb7262a089d7adf33e5e4194b4e90aa705bcb4c8857fd4b1a10386659ca7103cf6c2eed7
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
influxdb-rails (
|
4
|
+
influxdb-rails (0.0.1)
|
5
5
|
influxdb
|
6
6
|
railties
|
7
7
|
|
@@ -31,7 +31,7 @@ GEM
|
|
31
31
|
fakeweb (1.3.0)
|
32
32
|
hike (1.2.3)
|
33
33
|
i18n (0.6.9)
|
34
|
-
influxdb (0.0.
|
34
|
+
influxdb (0.0.16)
|
35
35
|
json
|
36
36
|
journey (1.0.4)
|
37
37
|
json (1.8.1)
|
data/lib/influxdb-rails.rb
CHANGED
@@ -23,7 +23,11 @@ module InfluxDB
|
|
23
23
|
|
24
24
|
def configure(silent = false)
|
25
25
|
yield(configuration)
|
26
|
-
self.client = InfluxDB::Client.new
|
26
|
+
self.client = InfluxDB::Client.new configuration.influxdb_database,
|
27
|
+
:username => configuration.influxdb_username,
|
28
|
+
:password => configuration.influxdb_password,
|
29
|
+
:host => configuration.influxdb_host,
|
30
|
+
:port => configuration.influxdb_port
|
27
31
|
end
|
28
32
|
|
29
33
|
def configuration
|
@@ -3,6 +3,10 @@ module InfluxDB
|
|
3
3
|
class Configuration
|
4
4
|
attr_accessor :influxdb_host
|
5
5
|
attr_accessor :influxdb_port
|
6
|
+
attr_accessor :influxdb_username
|
7
|
+
attr_accessor :influxdb_password
|
8
|
+
attr_accessor :influxdb_database
|
9
|
+
|
6
10
|
attr_accessor :application_id
|
7
11
|
attr_accessor :application_name
|
8
12
|
attr_accessor :application_root
|
@@ -29,7 +33,10 @@ module InfluxDB
|
|
29
33
|
|
30
34
|
DEFAULTS = {
|
31
35
|
:influxdb_host => "localhost",
|
36
|
+
:influxdb_host => "root",
|
37
|
+
:influxdb_host => "root",
|
32
38
|
:influxdb_port => 8086,
|
39
|
+
:influxdb_database => nil,
|
33
40
|
:ignored_exceptions => %w{ActiveRecord::RecordNotFound
|
34
41
|
ActionController::RoutingError},
|
35
42
|
:ignored_exception_messages => [],
|
@@ -62,6 +69,10 @@ module InfluxDB
|
|
62
69
|
def initialize
|
63
70
|
@influxdb_host = DEFAULTS[:influxdb_host]
|
64
71
|
@influxdb_port = DEFAULTS[:influxdb_port]
|
72
|
+
@influxdb_username = DEFAULTS[:influxdb_username]
|
73
|
+
@influxdb_password = DEFAULTS[:influxdb_password]
|
74
|
+
@influxdb_database = DEFAULTS[:influxdb_database]
|
75
|
+
|
65
76
|
@ignored_exceptions = DEFAULTS[:ignored_exceptions].dup
|
66
77
|
@ignored_exception_messages = DEFAULTS[:ignored_exception_messages].dup
|
67
78
|
@ignored_reports = DEFAULTS[:ignored_reports].dup
|
@@ -1118,3 +1118,200 @@ ZeroDivisionError (divided by 0):
|
|
1118
1118
|
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
1119
1119
|
|
1120
1120
|
|
1121
|
+
Processing by WidgetsController#new as HTML
|
1122
|
+
Completed 500 Internal Server Error in 0.3ms
|
1123
|
+
Processing by WidgetsController#index as HTML
|
1124
|
+
Completed 200 OK in 4.9ms (Views: 4.7ms)
|
1125
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-06 09:38:30 -0500
|
1126
|
+
Processing by WidgetsController#new as HTML
|
1127
|
+
Completed 500 Internal Server Error in 0.3ms
|
1128
|
+
|
1129
|
+
ZeroDivisionError (divided by 0):
|
1130
|
+
app.rb:21:in `/'
|
1131
|
+
app.rb:21:in `new'
|
1132
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1133
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
1134
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1135
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1136
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__878940021339995235__process_action__4011961690367644606__callbacks'
|
1137
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1138
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1139
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1140
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1141
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1142
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1143
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
1144
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1145
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
1146
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1147
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1148
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
1149
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
1150
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
1151
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1152
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
1153
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1154
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1155
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1156
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1157
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1158
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1159
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
1160
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1161
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
1162
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
1163
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1164
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1165
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1166
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
1167
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
1168
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1169
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1170
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__2801967440968918578__call__2213322606600941618__callbacks'
|
1171
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1172
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1173
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1174
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1175
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1176
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1177
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1178
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1179
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
1180
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
1181
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1182
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
1183
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1184
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
1185
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
1186
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1187
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
1188
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
1189
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
1190
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
1191
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
1192
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
1193
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
1194
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
1195
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
1196
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
1197
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
1198
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
1199
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
|
1200
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
1201
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
1202
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
1203
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
1204
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
1205
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
1206
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
1207
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
1208
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
1209
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
1210
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
1211
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
1212
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
1213
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
1214
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
1215
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
1216
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
1217
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
1218
|
+
|
1219
|
+
|
1220
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-06 09:38:30 -0500
|
1221
|
+
Processing by WidgetsController#index as HTML
|
1222
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
1223
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-06 09:38:30 -0500
|
1224
|
+
Processing by WidgetsController#new as HTML
|
1225
|
+
Completed 500 Internal Server Error in 0.1ms
|
1226
|
+
|
1227
|
+
ZeroDivisionError (divided by 0):
|
1228
|
+
app.rb:21:in `/'
|
1229
|
+
app.rb:21:in `new'
|
1230
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1231
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
1232
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1233
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1234
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__878940021339995235__process_action__4011961690367644606__callbacks'
|
1235
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1236
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1237
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1238
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1239
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1240
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1241
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
1242
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1243
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
1244
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1245
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1246
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
1247
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
1248
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
1249
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1250
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
1251
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1252
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1253
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1254
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1255
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1256
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1257
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
1258
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1259
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
1260
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
1261
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1262
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1263
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1264
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
1265
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
1266
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1267
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1268
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__2801967440968918578__call__2213322606600941618__callbacks'
|
1269
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1270
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1271
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1272
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1273
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1274
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1275
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1276
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1277
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
1278
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
1279
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1280
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
1281
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1282
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
1283
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
1284
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1285
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
1286
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
1287
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
1288
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
1289
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
1290
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
1291
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
1292
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
1293
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
1294
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
1295
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
1296
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
1297
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:33:in `block (3 levels) in <top (required)>'
|
1298
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
1299
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
1300
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
1301
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
1302
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
1303
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
1304
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
1305
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
1306
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
1307
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
1308
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
1309
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
1310
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
1311
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
1312
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
1313
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
1314
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
1315
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
1316
|
+
|
1317
|
+
|
data/spec/support/rails4/app.rb
CHANGED
metadata
CHANGED
@@ -1,139 +1,139 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: influxdb-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.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-
|
11
|
+
date: 2014-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: influxdb
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: railties
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: 1.0.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 1.0.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: fakeweb
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rdoc
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- -
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- -
|
94
|
+
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: rspec
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- -
|
101
|
+
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: '0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- -
|
108
|
+
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: rspec-rails
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- -
|
115
|
+
- - ">="
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: '0'
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- -
|
122
|
+
- - ">="
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: tzinfo
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
|
-
- -
|
129
|
+
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
131
|
version: '0'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
|
-
- -
|
136
|
+
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
139
|
description: This gem automatically instruments your Ruby on Rails 3.x/4.x applications
|
@@ -144,9 +144,11 @@ executables: []
|
|
144
144
|
extensions: []
|
145
145
|
extra_rdoc_files: []
|
146
146
|
files:
|
147
|
-
- config.ru
|
148
147
|
- Gemfile
|
149
148
|
- Gemfile.lock
|
149
|
+
- README.md
|
150
|
+
- Rakefile
|
151
|
+
- config.ru
|
150
152
|
- gemfiles/Gemfile.rails-3.0.x
|
151
153
|
- gemfiles/Gemfile.rails-3.0.x.lock
|
152
154
|
- gemfiles/Gemfile.rails-3.1.x
|
@@ -158,6 +160,7 @@ files:
|
|
158
160
|
- generators/influxdb/influxdb_generator.rb
|
159
161
|
- generators/influxdb/templates/initializer.rb
|
160
162
|
- influxdb-rails.gemspec
|
163
|
+
- lib/influxdb-rails.rb
|
161
164
|
- lib/influxdb/rails/air_traffic_controller.rb
|
162
165
|
- lib/influxdb/rails/backtrace.rb
|
163
166
|
- lib/influxdb/rails/configuration.rb
|
@@ -170,11 +173,8 @@ files:
|
|
170
173
|
- lib/influxdb/rails/rails.rb
|
171
174
|
- lib/influxdb/rails/railtie.rb
|
172
175
|
- lib/influxdb/rails/version.rb
|
173
|
-
- lib/influxdb-rails.rb
|
174
176
|
- lib/rails/generators/influxdb/influxdb_generator.rb
|
175
177
|
- lib/rails/generators/influxdb/templates/initializer.rb
|
176
|
-
- Rakefile
|
177
|
-
- README.md
|
178
178
|
- spec/controllers/widgets_controller_spec.rb
|
179
179
|
- spec/integration/exceptions_spec.rb
|
180
180
|
- spec/integration/integration_helper.rb
|
@@ -197,17 +197,17 @@ require_paths:
|
|
197
197
|
- lib
|
198
198
|
required_ruby_version: !ruby/object:Gem::Requirement
|
199
199
|
requirements:
|
200
|
-
- -
|
200
|
+
- - ">="
|
201
201
|
- !ruby/object:Gem::Version
|
202
202
|
version: '0'
|
203
203
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
204
204
|
requirements:
|
205
|
-
- -
|
205
|
+
- - ">="
|
206
206
|
- !ruby/object:Gem::Version
|
207
207
|
version: '0'
|
208
208
|
requirements: []
|
209
209
|
rubyforge_project: influxdb-rails
|
210
|
-
rubygems_version: 2.1
|
210
|
+
rubygems_version: 2.2.1
|
211
211
|
signing_key:
|
212
212
|
specification_version: 4
|
213
213
|
summary: InfluxDB bindings for Ruby on Rails.
|