viga 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/tasks/viga_tasks.rake +4 -0
  5. data/lib/viga.rb +6 -0
  6. data/lib/viga/controller.rb +17 -0
  7. data/lib/viga/routes.rb +18 -0
  8. data/lib/viga/version.rb +3 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  16. data/test/dummy/bin/bundle +3 -0
  17. data/test/dummy/bin/rails +4 -0
  18. data/test/dummy/bin/rake +4 -0
  19. data/test/dummy/config.ru +4 -0
  20. data/test/dummy/config/application.rb +23 -0
  21. data/test/dummy/config/boot.rb +5 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +37 -0
  25. data/test/dummy/config/environments/production.rb +78 -0
  26. data/test/dummy/config/environments/test.rb +39 -0
  27. data/test/dummy/config/initializers/assets.rb +8 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  30. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  31. data/test/dummy/config/initializers/inflections.rb +16 -0
  32. data/test/dummy/config/initializers/mime_types.rb +4 -0
  33. data/test/dummy/config/initializers/session_store.rb +3 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +23 -0
  36. data/test/dummy/config/routes.rb +59 -0
  37. data/test/dummy/config/secrets.yml +22 -0
  38. data/test/dummy/db/test.sqlite3 +0 -0
  39. data/test/dummy/log/development.log +0 -0
  40. data/test/dummy/log/test.log +484 -0
  41. data/test/dummy/public/404.html +67 -0
  42. data/test/dummy/public/422.html +67 -0
  43. data/test/dummy/public/500.html +66 -0
  44. data/test/dummy/public/favicon.ico +0 -0
  45. data/test/routes_test.rb +25 -0
  46. data/test/test_helper.rb +49 -0
  47. data/test/viga_test.rb +7 -0
  48. metadata +186 -0
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Precompile additional assets.
7
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
8
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,59 @@
1
+ Rails.application.routes.draw do
2
+ namespace :api do
3
+ viga_routes
4
+ end
5
+ # The priority is based upon order of creation: first created -> highest priority.
6
+ # See how all your routes lay out with "rake routes".
7
+
8
+ # You can have the root of your site routed with "root"
9
+ # root 'welcome#index'
10
+
11
+ # Example of regular route:
12
+ # get 'products/:id' => 'catalog#view'
13
+
14
+ # Example of named route that can be invoked with purchase_url(id: product.id)
15
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
16
+
17
+ # Example resource route (maps HTTP verbs to controller actions automatically):
18
+ # resources :products
19
+
20
+ # Example resource route with options:
21
+ # resources :products do
22
+ # member do
23
+ # get 'short'
24
+ # post 'toggle'
25
+ # end
26
+ #
27
+ # collection do
28
+ # get 'sold'
29
+ # end
30
+ # end
31
+
32
+ # Example resource route with sub-resources:
33
+ # resources :products do
34
+ # resources :comments, :sales
35
+ # resource :seller
36
+ # end
37
+
38
+ # Example resource route with more complex sub-resources:
39
+ # resources :products do
40
+ # resources :comments
41
+ # resources :sales do
42
+ # get 'recent', on: :collection
43
+ # end
44
+ # end
45
+
46
+ # Example resource route with concerns:
47
+ # concern :toggleable do
48
+ # post 'toggle'
49
+ # end
50
+ # resources :posts, concerns: :toggleable
51
+ # resources :photos, concerns: :toggleable
52
+
53
+ # Example resource route within a namespace:
54
+ # namespace :admin do
55
+ # # Directs /admin/products/* to Admin::ProductsController
56
+ # # (app/controllers/admin/products_controller.rb)
57
+ # resources :products
58
+ # end
59
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: fa559fe4bb4627084d1e0442558a993894dea24ecfd81372a3c9c568289e4443a22af6f56a4592e1b06c8367807530e9583e7dbab261a36d62fedf241741d3ee
15
+
16
+ test:
17
+ secret_key_base: 5e2d4731420ecf9120a5cc33d8b75e2ee2e9afa3338b07d142c87c3d58fc4666a2a0c42a9dca5121b5526d016c280d98f03979717ed4aec90ce4dcfaa4288b2e
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
File without changes
File without changes
@@ -0,0 +1,484 @@
1
+  (0.1ms) begin transaction
2
+ --------------------
3
+ VigaTest: test_truth
4
+ --------------------
5
+  (0.0ms) rollback transaction
6
+  (0.0ms) begin transaction
7
+ -----------------
8
+ RoutesTest: test_
9
+ -----------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ --------------------
13
+ VigaTest: test_truth
14
+ --------------------
15
+  (0.0ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ ----------------------
18
+ RoutesTest: test_truth
19
+ ----------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ -----------------------------------
23
+ RoutesTest: test_test_stop_endpoing
24
+ -----------------------------------
25
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:07:01 -0400
26
+  (0.1ms) rollback transaction
27
+  (0.0ms) begin transaction
28
+ --------------------
29
+ VigaTest: test_truth
30
+ --------------------
31
+  (0.0ms) rollback transaction
32
+  (0.0ms) begin transaction
33
+ --------------------
34
+ VigaTest: test_truth
35
+ --------------------
36
+  (0.0ms) rollback transaction
37
+  (0.0ms) begin transaction
38
+ -----------------------------------
39
+ RoutesTest: test_test_stop_endpoing
40
+ -----------------------------------
41
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:08:51 -0400
42
+  (0.1ms) rollback transaction
43
+  (0.1ms) begin transaction
44
+ -----------------------------------
45
+ RoutesTest: test_test_stop_endpoing
46
+ -----------------------------------
47
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:09:11 -0400
48
+  (0.0ms) rollback transaction
49
+  (0.0ms) begin transaction
50
+ --------------------
51
+ VigaTest: test_truth
52
+ --------------------
53
+  (0.0ms) rollback transaction
54
+  (0.1ms) begin transaction
55
+ -----------------------------------
56
+ RoutesTest: test_test_stop_endpoing
57
+ -----------------------------------
58
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:09:25 -0400
59
+  (0.1ms) rollback transaction
60
+  (0.0ms) begin transaction
61
+ --------------------
62
+ VigaTest: test_truth
63
+ --------------------
64
+  (0.0ms) rollback transaction
65
+  (0.1ms) begin transaction
66
+ --------------------
67
+ VigaTest: test_truth
68
+ --------------------
69
+  (0.1ms) rollback transaction
70
+  (0.1ms) begin transaction
71
+ -----------------------------------
72
+ RoutesTest: test_test_stop_endpoing
73
+ -----------------------------------
74
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:13:58 -0400
75
+  (0.2ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ --------------------
78
+ VigaTest: test_truth
79
+ --------------------
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ -----------------------------------
83
+ RoutesTest: test_test_stop_endpoing
84
+ -----------------------------------
85
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:17:02 -0400
86
+  (0.1ms) begin transaction
87
+ -----------------------------------
88
+ RoutesTest: test_test_stop_endpoing
89
+ -----------------------------------
90
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:18:03 -0400
91
+  (0.1ms) begin transaction
92
+ --------------------
93
+ VigaTest: test_truth
94
+ --------------------
95
+  (0.0ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+ -----------------------------------
98
+ RoutesTest: test_test_stop_endpoing
99
+ -----------------------------------
100
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:29:21 -0400
101
+  (0.1ms) rollback transaction
102
+  (0.1ms) begin transaction
103
+ -----------------------------------
104
+ RoutesTest: test_test_stop_endpoing
105
+ -----------------------------------
106
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:30:23 -0400
107
+  (0.0ms) rollback transaction
108
+  (0.0ms) begin transaction
109
+ --------------------
110
+ VigaTest: test_truth
111
+ --------------------
112
+  (0.0ms) rollback transaction
113
+  (0.1ms) begin transaction
114
+ --------------------
115
+ VigaTest: test_truth
116
+ --------------------
117
+  (0.0ms) rollback transaction
118
+  (0.0ms) begin transaction
119
+ -----------------------------------
120
+ RoutesTest: test_test_stop_endpoing
121
+ -----------------------------------
122
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:31:07 -0400
123
+  (0.1ms) rollback transaction
124
+  (0.1ms) begin transaction
125
+ -----------------------------------
126
+ RoutesTest: test_test_stop_endpoing
127
+ -----------------------------------
128
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:33:00 -0400
129
+  (0.1ms) rollback transaction
130
+  (0.0ms) begin transaction
131
+ --------------------
132
+ VigaTest: test_truth
133
+ --------------------
134
+  (0.0ms) rollback transaction
135
+  (0.1ms) begin transaction
136
+ -----------------------------------
137
+ RoutesTest: test_test_stop_endpoing
138
+ -----------------------------------
139
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:34:53 -0400
140
+  (0.1ms) rollback transaction
141
+  (0.0ms) begin transaction
142
+ --------------------
143
+ VigaTest: test_truth
144
+ --------------------
145
+  (0.0ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ -----------------------------------
148
+ RoutesTest: test_test_stop_endpoing
149
+ -----------------------------------
150
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:35:41 -0400
151
+  (0.1ms) rollback transaction
152
+  (0.1ms) begin transaction
153
+ --------------------
154
+ VigaTest: test_truth
155
+ --------------------
156
+  (0.1ms) rollback transaction
157
+  (0.1ms) begin transaction
158
+ --------------------
159
+ VigaTest: test_truth
160
+ --------------------
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+ -----------------------------------
164
+ RoutesTest: test_test_stop_endpoing
165
+ -----------------------------------
166
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:36:55 -0400
167
+ Processing by Api::TestsController#stop as HTML
168
+ Completed 500 Internal Server Error in 2194ms
169
+  (0.1ms) rollback transaction
170
+  (0.1ms) begin transaction
171
+ -----------------------------------
172
+ RoutesTest: test_test_stop_endpoing
173
+ -----------------------------------
174
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 15:37:14 -0400
175
+ Processing by Api::TestsController#stop as HTML
176
+ Completed 500 Internal Server Error in 2147ms
177
+  (0.1ms) rollback transaction
178
+  (0.1ms) begin transaction
179
+ --------------------
180
+ VigaTest: test_truth
181
+ --------------------
182
+  (0.1ms) rollback transaction
183
+  (0.0ms) begin transaction
184
+ ------------------------------------
185
+ RoutesTest: test_test_start_endpoint
186
+ ------------------------------------
187
+ Started POST "/api/tests/start" for 127.0.0.1 at 2014-09-16 16:11:19 -0400
188
+  (0.0ms) rollback transaction
189
+  (0.0ms) begin transaction
190
+ -----------------------------------
191
+ RoutesTest: test_test_stop_endpoint
192
+ -----------------------------------
193
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 16:11:19 -0400
194
+ Processing by Api::TestsController#stop as HTML
195
+ Completed 500 Internal Server Error in 4ms
196
+  (0.0ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+ --------------------
199
+ VigaTest: test_truth
200
+ --------------------
201
+  (0.0ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+ ------------------------------------
204
+ RoutesTest: test_test_start_endpoint
205
+ ------------------------------------
206
+ Started POST "/api/tests/start" for 127.0.0.1 at 2014-09-16 16:23:35 -0400
207
+  (0.0ms) rollback transaction
208
+  (0.0ms) begin transaction
209
+ -----------------------------------
210
+ RoutesTest: test_test_stop_endpoint
211
+ -----------------------------------
212
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 16:23:35 -0400
213
+ Processing by Api::TestsController#stop as HTML
214
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
215
+  (0.0ms) rollback transaction
216
+  (0.0ms) begin transaction
217
+ --------------------
218
+ VigaTest: test_truth
219
+ --------------------
220
+  (0.0ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ --------------------
223
+ VigaTest: test_truth
224
+ --------------------
225
+  (0.0ms) rollback transaction
226
+  (0.0ms) begin transaction
227
+ ------------------------------------
228
+ RoutesTest: test_test_start_endpoint
229
+ ------------------------------------
230
+ Started POST "/api/tests/start" for 127.0.0.1 at 2014-09-16 16:24:22 -0400
231
+ Processing by Api::TestsController#start as HTML
232
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
233
+  (0.0ms) rollback transaction
234
+  (0.0ms) begin transaction
235
+ -----------------------------------
236
+ RoutesTest: test_test_stop_endpoint
237
+ -----------------------------------
238
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-16 16:24:22 -0400
239
+ Processing by Api::TestsController#stop as HTML
240
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
241
+  (0.0ms) rollback transaction
242
+  (0.1ms) begin transaction
243
+ ------------------------------------
244
+ RoutesTest: test_test_start_endpoint
245
+ ------------------------------------
246
+  (0.1ms) rollback transaction
247
+  (0.1ms) begin transaction
248
+ ------------------------------------
249
+ RoutesTest: test_test_start_endpoint
250
+ ------------------------------------
251
+  (0.0ms) rollback transaction
252
+  (0.0ms) begin transaction
253
+ -----------------------------------
254
+ RoutesTest: test_test_stop_endpoint
255
+ -----------------------------------
256
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-17 02:11:26 -0400
257
+ Processing by Api::TestsController#stop as HTML
258
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
259
+  (0.1ms) rollback transaction
260
+  (0.0ms) begin transaction
261
+ --------------------
262
+ VigaTest: test_truth
263
+ --------------------
264
+  (0.0ms) rollback transaction
265
+  (0.1ms) begin transaction
266
+ ------------------------------------
267
+ RoutesTest: test_test_start_endpoint
268
+ ------------------------------------
269
+  (0.0ms) rollback transaction
270
+  (0.1ms) begin transaction
271
+ -----------------------------------
272
+ RoutesTest: test_test_stop_endpoint
273
+ -----------------------------------
274
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-17 02:11:53 -0400
275
+ Processing by Api::TestsController#stop as HTML
276
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
277
+  (0.0ms) rollback transaction
278
+  (0.0ms) begin transaction
279
+ --------------------
280
+ VigaTest: test_truth
281
+ --------------------
282
+  (0.0ms) rollback transaction
283
+  (0.1ms) begin transaction
284
+ ------------------------------------
285
+ RoutesTest: test_test_start_endpoint
286
+ ------------------------------------
287
+  (0.1ms) begin transaction
288
+ --------------------
289
+ VigaTest: test_truth
290
+ --------------------
291
+  (0.0ms) rollback transaction
292
+  (0.0ms) begin transaction
293
+ ------------------------------------
294
+ RoutesTest: test_test_start_endpoint
295
+ ------------------------------------
296
+ Started POST "/api/tests/start" for 127.0.0.1 at 2014-09-17 02:14:18 -0400
297
+ Processing by Api::TestsController#start as HTML
298
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
299
+  (0.1ms) rollback transaction
300
+  (0.1ms) begin transaction
301
+ -----------------------------------
302
+ RoutesTest: test_test_stop_endpoint
303
+ -----------------------------------
304
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-17 02:14:18 -0400
305
+ Processing by Api::TestsController#stop as HTML
306
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
307
+  (0.0ms) rollback transaction
308
+  (0.1ms) begin transaction
309
+ ------------------------------------
310
+ RoutesTest: test_test_start_endpoint
311
+ ------------------------------------
312
+ Started POST "/api/tests/start" for 127.0.0.1 at 2014-09-17 02:14:49 -0400
313
+ Processing by Api::TestsController#start as HTML
314
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
315
+  (0.0ms) rollback transaction
316
+  (0.0ms) begin transaction
317
+ -----------------------------------
318
+ RoutesTest: test_test_stop_endpoint
319
+ -----------------------------------
320
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-17 02:14:49 -0400
321
+ Processing by Api::TestsController#stop as HTML
322
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
323
+  (0.0ms) rollback transaction
324
+  (0.0ms) begin transaction
325
+ --------------------
326
+ VigaTest: test_truth
327
+ --------------------
328
+  (0.0ms) rollback transaction
329
+  (0.1ms) begin transaction
330
+ --------------------
331
+ VigaTest: test_truth
332
+ --------------------
333
+  (0.0ms) rollback transaction
334
+  (0.0ms) begin transaction
335
+ ------------------------------------
336
+ RoutesTest: test_test_start_endpoint
337
+ ------------------------------------
338
+ Started POST "/api/tests/start" for 127.0.0.1 at 2014-09-17 02:15:30 -0400
339
+ Processing by Api::TestsController#start as HTML
340
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
341
+  (0.0ms) rollback transaction
342
+  (0.0ms) begin transaction
343
+ -----------------------------------
344
+ RoutesTest: test_test_stop_endpoint
345
+ -----------------------------------
346
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-17 02:15:30 -0400
347
+ Processing by Api::TestsController#stop as HTML
348
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
349
+  (0.2ms) rollback transaction
350
+  (0.1ms) begin transaction
351
+ --------------------
352
+ VigaTest: test_truth
353
+ --------------------
354
+  (0.0ms) rollback transaction
355
+  (0.0ms) begin transaction
356
+ ------------------------------------
357
+ RoutesTest: test_test_start_endpoint
358
+ ------------------------------------
359
+ Started POST "/api/tests/start" for 127.0.0.1 at 2014-09-17 02:15:42 -0400
360
+ Processing by Api::TestsController#start as HTML
361
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
362
+  (0.0ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+ -----------------------------------
365
+ RoutesTest: test_test_stop_endpoint
366
+ -----------------------------------
367
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-17 02:15:42 -0400
368
+ Processing by Api::TestsController#stop as HTML
369
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
370
+  (0.0ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ --------------------
373
+ VigaTest: test_truth
374
+ --------------------
375
+  (0.0ms) rollback transaction
376
+  (0.0ms) begin transaction
377
+ ------------------------------------
378
+ RoutesTest: test_test_start_endpoint
379
+ ------------------------------------
380
+ Started POST "/api/tests/scenario_1/start" for 127.0.0.1 at 2014-09-19 21:41:41 -0400
381
+ Processing by Api::TestsController#start as HTML
382
+ Parameters: {"scenario_id"=>"scenario_1"}
383
+ Completed 500 Internal Server Error in 0ms
384
+  (0.1ms) rollback transaction
385
+  (0.0ms) begin transaction
386
+ -----------------------------------
387
+ RoutesTest: test_test_stop_endpoint
388
+ -----------------------------------
389
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-19 21:41:41 -0400
390
+ Processing by Api::TestsController#stop as HTML
391
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
392
+  (0.0ms) rollback transaction
393
+  (0.1ms) begin transaction
394
+ --------------------
395
+ VigaTest: test_truth
396
+ --------------------
397
+  (0.0ms) rollback transaction
398
+  (0.0ms) begin transaction
399
+ ------------------------------------
400
+ RoutesTest: test_test_start_endpoint
401
+ ------------------------------------
402
+ Started POST "/api/tests/scenario_1/start" for 127.0.0.1 at 2014-09-19 21:42:06 -0400
403
+ Processing by Api::TestsController#start as HTML
404
+ Parameters: {"scenario_id"=>"scenario_1"}
405
+  (0.1ms) begin transaction
406
+ --------------------
407
+ VigaTest: test_truth
408
+ --------------------
409
+  (0.1ms) rollback transaction
410
+  (0.0ms) begin transaction
411
+ ------------------------------------
412
+ RoutesTest: test_test_start_endpoint
413
+ ------------------------------------
414
+  (0.0ms) rollback transaction
415
+  (0.0ms) begin transaction
416
+ -----------------------------------
417
+ RoutesTest: test_test_stop_endpoint
418
+ -----------------------------------
419
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-20 03:31:46 -0400
420
+ Processing by Api::TestsController#stop as HTML
421
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
422
+  (0.1ms) rollback transaction
423
+  (0.0ms) begin transaction
424
+ ------------------------------------
425
+ RoutesTest: test_test_start_endpoint
426
+ ------------------------------------
427
+  (0.0ms) rollback transaction
428
+  (0.0ms) begin transaction
429
+ -----------------------------------
430
+ RoutesTest: test_test_stop_endpoint
431
+ -----------------------------------
432
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-20 03:32:18 -0400
433
+ Processing by Api::TestsController#stop as HTML
434
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
435
+  (0.0ms) rollback transaction
436
+  (0.0ms) begin transaction
437
+ --------------------
438
+ VigaTest: test_truth
439
+ --------------------
440
+  (0.0ms) rollback transaction
441
+  (0.0ms) begin transaction
442
+ --------------------
443
+ VigaTest: test_truth
444
+ --------------------
445
+  (0.0ms) rollback transaction
446
+  (0.0ms) begin transaction
447
+ ------------------------------------
448
+ RoutesTest: test_test_start_endpoint
449
+ ------------------------------------
450
+ Started POST "/api/tests/scenario_1/start" for 127.0.0.1 at 2014-09-20 03:38:28 -0400
451
+ Processing by Api::TestsController#start as HTML
452
+ Parameters: {"scenario_id"=>"scenario_1"}
453
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
454
+  (0.0ms) rollback transaction
455
+  (0.0ms) begin transaction
456
+ -----------------------------------
457
+ RoutesTest: test_test_stop_endpoint
458
+ -----------------------------------
459
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-20 03:38:28 -0400
460
+ Processing by Api::TestsController#stop as HTML
461
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
462
+  (0.0ms) rollback transaction
463
+  (0.0ms) begin transaction
464
+ ------------------------------------
465
+ RoutesTest: test_test_start_endpoint
466
+ ------------------------------------
467
+ Started POST "/api/tests/scenario_1/start" for 127.0.0.1 at 2014-09-20 03:39:02 -0400
468
+ Processing by Api::TestsController#start as HTML
469
+ Parameters: {"scenario_id"=>"scenario_1"}
470
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
471
+  (0.0ms) rollback transaction
472
+  (0.0ms) begin transaction
473
+ -----------------------------------
474
+ RoutesTest: test_test_stop_endpoint
475
+ -----------------------------------
476
+ Started DELETE "/api/tests/stop" for 127.0.0.1 at 2014-09-20 03:39:02 -0400
477
+ Processing by Api::TestsController#stop as HTML
478
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
479
+  (0.0ms) rollback transaction
480
+  (0.0ms) begin transaction
481
+ --------------------
482
+ VigaTest: test_truth
483
+ --------------------
484
+  (0.0ms) rollback transaction