bumbleworks-rails 0.0.8 → 0.0.9

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: 426ad3113a1c34b0a38afc11c7dd93913f487c19
4
- data.tar.gz: 5c5905cc5edde3ac2a579f3e48c93f24448bb196
3
+ metadata.gz: b172e70c9a8d446ca4bd614d9f0f8ca1caaf42bb
4
+ data.tar.gz: 9f5fb4e08ca70abb70b94b416ac6ad841f4a808d
5
5
  SHA512:
6
- metadata.gz: 32799aada41f3739438d2c319a1b3700c709617336f3fdbc8a7d005f3df9b4e39888119abb5f1d3b5edfdead891f8a7c99d02188bacb717d60403df67090f563
7
- data.tar.gz: 7318b680934e685a2809a4f815b68963a59e9d49250df7a3e9d8862dfde1c8b75ba272b66cde5fc7cdf29c54143abd9021f292b7f4f14ac128a3fffc07a4359c
6
+ metadata.gz: ad1a5f9390cf03cb7b373af9569f6bc0f8d3f12f85e1290d2446174d9d91312a039654b10242839d218b045356a343d7f793510cdea7280ff744f3a18e050960
7
+ data.tar.gz: dbaa1c7f556c79f9c0980f050fd625736306a15d761d6a6ab94f63bc0cab5ad761ead53f54545a59edded1a31fc857af222a1b72369fca64fc7812f0f8d3d28c
@@ -18,10 +18,10 @@ class Bumbleworks::Rails::TasksController < BumbleworksController
18
18
  def complete
19
19
  if @task.claimant == current_user.claim_token
20
20
  @task.complete(params[:task] || {})
21
- flash[:notice] = I18n.t('bumbleworks.tasks.completed')
21
+ flash[:notice] = I18n.t('bumbleworks.tasks.completed', :task => task_name(@task))
22
22
  redirect_to entity_tasks_path @entity
23
23
  else
24
- flash[:error] = I18n.t('bumbleworks.tasks.unclaimed_complete_attempt')
24
+ flash[:error] = I18n.t('bumbleworks.tasks.unclaimed_complete_attempt', :task => task_name(@task))
25
25
  redirect_to entity_task_path @task
26
26
  end
27
27
  rescue Bumbleworks::Task::NotCompletable => e
@@ -33,6 +33,7 @@ class Bumbleworks::Rails::TasksController < BumbleworksController
33
33
 
34
34
  def claim
35
35
  current_user.claim(@task)
36
+ flash[:notice] = I18n.t('bumbleworks.tasks.claimed', :task => task_name(@task))
36
37
  rescue Bumbleworks::User::UnauthorizedClaimAttempt,
37
38
  Bumbleworks::Task::AlreadyClaimed => e
38
39
  flash[:error] = e.message
@@ -42,10 +43,11 @@ class Bumbleworks::Rails::TasksController < BumbleworksController
42
43
 
43
44
  def release
44
45
  current_user.release(@task)
46
+ flash[:notice] = I18n.t('bumbleworks.tasks.released', :task => task_name(@task))
45
47
  rescue Bumbleworks::User::UnauthorizedReleaseAttempt
46
- flash[:error] = I18n.t('bumbleworks.tasks.unauthorized_release_attempt')
48
+ flash[:error] = I18n.t('bumbleworks.tasks.unauthorized_release_attempt', :task => task_name(@task))
47
49
  ensure
48
- redirect_to entity_task_path @task
50
+ redirect_to entity_tasks_path @entity
49
51
  end
50
52
 
51
53
  protected
@@ -0,0 +1,10 @@
1
+ en:
2
+ bumbleworks:
3
+ unauthorized: "You are not authorized to access that resource."
4
+ tasks:
5
+ claimed: "You have successfully claimed task \"%{task}\"."
6
+ released: "You have successfully released task \"%{task}\"."
7
+ completed: "Task \"%{task}\" completed."
8
+ not_found: "Can't find task %{task_id}"
9
+ unauthorized_release_attempt: "You do not currently have a lock on this task"
10
+ unclaimed_complete_attempt: "You cannot complete a task not claimed by you"
@@ -1,5 +1,5 @@
1
1
  module Bumbleworks
2
2
  module Rails
3
- VERSION = "0.0.8"
3
+ VERSION = "0.0.9"
4
4
  end
5
5
  end
@@ -4,7 +4,8 @@ describe Bumbleworks::Rails::TasksController do
4
4
  :role => 'cop',
5
5
  :id => 'werk',
6
6
  :entity => Fridget.new(5),
7
- :has_entity? => true
7
+ :has_entity? => true,
8
+ :nickname => 'do_stuff'
8
9
  })
9
10
  }
10
11
 
@@ -120,7 +121,7 @@ describe Bumbleworks::Rails::TasksController do
120
121
  it 'releases the task if current claimant' do
121
122
  expect(subject.current_user).to receive(:release).with(task)
122
123
  post :release, :id => 152
123
- expect(response).to redirect_to(controller.entity_task_path(task))
124
+ expect(response).to redirect_to(controller.entity_tasks_path(task.entity))
124
125
  end
125
126
 
126
127
  it 'does not release the task if not claimant' do
@@ -128,7 +129,7 @@ describe Bumbleworks::Rails::TasksController do
128
129
  and_raise(Bumbleworks::User::UnauthorizedReleaseAttempt)
129
130
  post :release, :id => 152
130
131
  expect(flash[:error]).to eq(I18n.t('bumbleworks.tasks.unauthorized_release_attempt'))
131
- expect(response).to redirect_to(controller.entity_task_path(task))
132
+ expect(response).to redirect_to(controller.entity_tasks_path(task.entity))
132
133
  end
133
134
  end
134
135
 
@@ -9065,3 +9065,554 @@ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
9065
9065
  Processing by Bumbleworks::Rails::TasksController#index as HTML
9066
9066
  Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
9067
9067
  Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9068
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9069
+ Parameters: {"id"=>"152"}
9070
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.3ms)
9071
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
9072
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9073
+ Parameters: {"id"=>"152"}
9074
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
9075
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9076
+ Parameters: {"id"=>"152"}
9077
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9078
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9079
+ Parameters: {"id"=>"152"}
9080
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9081
+ Completed 401 Unauthorized in 7ms (Views: 1.4ms | ActiveRecord: 0.0ms)
9082
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9083
+ Parameters: {"id"=>"152"}
9084
+ Redirected to http://test.host/
9085
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9086
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9087
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9088
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9089
+ Redirected to http://test.host/fridgets/5/tasks
9090
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
9091
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9092
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9093
+ Redirected to http://test.host/fridgets/5/tasks/werk
9094
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9095
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9096
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9097
+ Redirected to http://test.host/fridgets/5/tasks/werk
9098
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9099
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9100
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9101
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9102
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9103
+ Parameters: {"id"=>"152"}
9104
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9105
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
9106
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9107
+ Parameters: {"id"=>"152"}
9108
+ Redirected to http://test.host/
9109
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9110
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9111
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9112
+ Parameters: {"id"=>"152"}
9113
+ Redirected to http://test.host/fridgets/5/tasks/werk
9114
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9115
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9116
+ Parameters: {"id"=>"152"}
9117
+ Redirected to http://test.host/fridgets/5/tasks/werk
9118
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9119
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9120
+ Parameters: {"id"=>"152"}
9121
+ Redirected to http://test.host/fridgets/5/tasks/werk
9122
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9123
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9124
+ Parameters: {"id"=>"152"}
9125
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9126
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9127
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9128
+ Parameters: {"id"=>"152"}
9129
+ Redirected to http://test.host/
9130
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9131
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9132
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9133
+ Parameters: {"id"=>"152"}
9134
+ Redirected to http://test.host/fridgets/5/tasks
9135
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9136
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9137
+ Parameters: {"id"=>"152"}
9138
+ Redirected to http://test.host/fridgets/5/tasks
9139
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9140
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9141
+ Parameters: {"id"=>"152"}
9142
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9143
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9144
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9145
+ Parameters: {"id"=>"152"}
9146
+ Redirected to http://test.host/
9147
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9148
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9149
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9150
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
9151
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9152
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9153
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
9154
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9155
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9156
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9157
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9158
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9159
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9160
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
9161
+ Filter chain halted as :load_entity rendered or redirected
9162
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9163
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9164
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
9165
+ Filter chain halted as :load_entity rendered or redirected
9166
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9167
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9168
+ Parameters: {"entity_type"=>"smoo", "entity_id"=>"2"}
9169
+ Filter chain halted as :load_entity rendered or redirected
9170
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9171
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9172
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9173
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9174
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
9175
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
9176
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9177
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
9178
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9179
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9180
+ Parameters: {"id"=>"152"}
9181
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.2ms)
9182
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
9183
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9184
+ Parameters: {"id"=>"152"}
9185
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
9186
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9187
+ Parameters: {"id"=>"152"}
9188
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9189
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9190
+ Parameters: {"id"=>"152"}
9191
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9192
+ Completed 401 Unauthorized in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
9193
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9194
+ Parameters: {"id"=>"152"}
9195
+ Redirected to http://test.host/
9196
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9197
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9198
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9199
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9200
+ Completed 500 Internal Server Error in 1ms
9201
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9202
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9203
+ Completed 500 Internal Server Error in 0ms
9204
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9205
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9206
+ Redirected to http://test.host/fridgets/5/tasks/werk
9207
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9208
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9209
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9210
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9211
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9212
+ Parameters: {"id"=>"152"}
9213
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9214
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9215
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9216
+ Parameters: {"id"=>"152"}
9217
+ Redirected to http://test.host/
9218
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9219
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9220
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9221
+ Parameters: {"id"=>"152"}
9222
+ Redirected to http://test.host/fridgets/5/tasks/werk
9223
+ Completed 500 Internal Server Error in 1ms
9224
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9225
+ Parameters: {"id"=>"152"}
9226
+ Redirected to http://test.host/fridgets/5/tasks/werk
9227
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9228
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9229
+ Parameters: {"id"=>"152"}
9230
+ Redirected to http://test.host/fridgets/5/tasks/werk
9231
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9232
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9233
+ Parameters: {"id"=>"152"}
9234
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9235
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9236
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9237
+ Parameters: {"id"=>"152"}
9238
+ Redirected to http://test.host/
9239
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9240
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9241
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9242
+ Parameters: {"id"=>"152"}
9243
+ Redirected to http://test.host/fridgets/5/tasks
9244
+ Completed 500 Internal Server Error in 1ms
9245
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9246
+ Parameters: {"id"=>"152"}
9247
+ Redirected to http://test.host/fridgets/5/tasks
9248
+ Completed 500 Internal Server Error in 1ms
9249
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9250
+ Parameters: {"id"=>"152"}
9251
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9252
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9253
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9254
+ Parameters: {"id"=>"152"}
9255
+ Redirected to http://test.host/
9256
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9257
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9258
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9259
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
9260
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9261
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9262
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
9263
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9264
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9265
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9266
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9267
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9268
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9269
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
9270
+ Filter chain halted as :load_entity rendered or redirected
9271
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9272
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9273
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
9274
+ Filter chain halted as :load_entity rendered or redirected
9275
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9276
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9277
+ Parameters: {"entity_type"=>"smoo", "entity_id"=>"2"}
9278
+ Filter chain halted as :load_entity rendered or redirected
9279
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9280
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9281
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9282
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9283
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
9284
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
9285
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9286
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
9287
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9288
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9289
+ Parameters: {"id"=>"152"}
9290
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.2ms)
9291
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
9292
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9293
+ Parameters: {"id"=>"152"}
9294
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
9295
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9296
+ Parameters: {"id"=>"152"}
9297
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9298
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9299
+ Parameters: {"id"=>"152"}
9300
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9301
+ Completed 401 Unauthorized in 4ms (Views: 0.8ms | ActiveRecord: 0.0ms)
9302
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9303
+ Parameters: {"id"=>"152"}
9304
+ Redirected to http://test.host/
9305
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9306
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9307
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9308
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9309
+ Completed 500 Internal Server Error in 1ms
9310
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9311
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9312
+ Completed 500 Internal Server Error in 0ms
9313
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9314
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9315
+ Redirected to http://test.host/fridgets/5/tasks/werk
9316
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9317
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9318
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9319
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9320
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9321
+ Parameters: {"id"=>"152"}
9322
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9323
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9324
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9325
+ Parameters: {"id"=>"152"}
9326
+ Redirected to http://test.host/
9327
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9328
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9329
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9330
+ Parameters: {"id"=>"152"}
9331
+ Redirected to http://test.host/fridgets/5/tasks/werk
9332
+ Completed 500 Internal Server Error in 1ms
9333
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9334
+ Parameters: {"id"=>"152"}
9335
+ Redirected to http://test.host/fridgets/5/tasks/werk
9336
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9337
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9338
+ Parameters: {"id"=>"152"}
9339
+ Redirected to http://test.host/fridgets/5/tasks/werk
9340
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9341
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9342
+ Parameters: {"id"=>"152"}
9343
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9344
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9345
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9346
+ Parameters: {"id"=>"152"}
9347
+ Redirected to http://test.host/
9348
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9349
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9350
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9351
+ Parameters: {"id"=>"152"}
9352
+ Redirected to http://test.host/fridgets/5/tasks
9353
+ Completed 500 Internal Server Error in 1ms
9354
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9355
+ Parameters: {"id"=>"152"}
9356
+ Redirected to http://test.host/fridgets/5/tasks
9357
+ Completed 500 Internal Server Error in 1ms
9358
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9359
+ Parameters: {"id"=>"152"}
9360
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9361
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9362
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9363
+ Parameters: {"id"=>"152"}
9364
+ Redirected to http://test.host/
9365
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9366
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9367
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9368
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
9369
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9370
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9371
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
9372
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9373
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9374
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9375
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9376
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
9377
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9378
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
9379
+ Filter chain halted as :load_entity rendered or redirected
9380
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9381
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9382
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
9383
+ Filter chain halted as :load_entity rendered or redirected
9384
+ Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
9385
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9386
+ Parameters: {"entity_type"=>"smoo", "entity_id"=>"2"}
9387
+ Filter chain halted as :load_entity rendered or redirected
9388
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9389
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9390
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9391
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9392
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
9393
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
9394
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9395
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
9396
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9397
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9398
+ Parameters: {"id"=>"152"}
9399
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.3ms)
9400
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
9401
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9402
+ Parameters: {"id"=>"152"}
9403
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
9404
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9405
+ Parameters: {"id"=>"152"}
9406
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9407
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9408
+ Parameters: {"id"=>"152"}
9409
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9410
+ Completed 401 Unauthorized in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
9411
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9412
+ Parameters: {"id"=>"152"}
9413
+ Redirected to http://test.host/
9414
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9415
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9416
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9417
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9418
+ Redirected to http://test.host/fridgets/5/tasks
9419
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
9420
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9421
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9422
+ Redirected to http://test.host/fridgets/5/tasks/werk
9423
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9424
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9425
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9426
+ Redirected to http://test.host/fridgets/5/tasks/werk
9427
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9428
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9429
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9430
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9431
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9432
+ Parameters: {"id"=>"152"}
9433
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9434
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
9435
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9436
+ Parameters: {"id"=>"152"}
9437
+ Redirected to http://test.host/
9438
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9439
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9440
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9441
+ Parameters: {"id"=>"152"}
9442
+ Redirected to http://test.host/fridgets/5/tasks/werk
9443
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9444
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9445
+ Parameters: {"id"=>"152"}
9446
+ Redirected to http://test.host/fridgets/5/tasks/werk
9447
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
9448
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9449
+ Parameters: {"id"=>"152"}
9450
+ Redirected to http://test.host/fridgets/5/tasks/werk
9451
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9452
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9453
+ Parameters: {"id"=>"152"}
9454
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9455
+ Completed 401 Unauthorized in 11ms (Views: 0.3ms | ActiveRecord: 0.0ms)
9456
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9457
+ Parameters: {"id"=>"152"}
9458
+ Redirected to http://test.host/
9459
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9460
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9461
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9462
+ Parameters: {"id"=>"152"}
9463
+ Redirected to http://test.host/fridgets/5/tasks
9464
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9465
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9466
+ Parameters: {"id"=>"152"}
9467
+ Redirected to http://test.host/fridgets/5/tasks
9468
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9469
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9470
+ Parameters: {"id"=>"152"}
9471
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9472
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
9473
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9474
+ Parameters: {"id"=>"152"}
9475
+ Redirected to http://test.host/
9476
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9477
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9478
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9479
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
9480
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9481
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9482
+ Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.0ms)
9483
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9484
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
9485
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9486
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9487
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9488
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9489
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
9490
+ Filter chain halted as :load_entity rendered or redirected
9491
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9492
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9493
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
9494
+ Filter chain halted as :load_entity rendered or redirected
9495
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
9496
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9497
+ Parameters: {"entity_type"=>"smoo", "entity_id"=>"2"}
9498
+ Filter chain halted as :load_entity rendered or redirected
9499
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9500
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9501
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9502
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9503
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
9504
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
9505
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9506
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
9507
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9508
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9509
+ Parameters: {"id"=>"152"}
9510
+ Rendered fridgets/tasks/show.html.erb within layouts/application (0.2ms)
9511
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
9512
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9513
+ Parameters: {"id"=>"152"}
9514
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
9515
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9516
+ Parameters: {"id"=>"152"}
9517
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9518
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9519
+ Parameters: {"id"=>"152"}
9520
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9521
+ Completed 401 Unauthorized in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
9522
+ Processing by Bumbleworks::Rails::TasksController#show as HTML
9523
+ Parameters: {"id"=>"152"}
9524
+ Redirected to http://test.host/
9525
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9526
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9527
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9528
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9529
+ Redirected to http://test.host/fridgets/5/tasks
9530
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9531
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9532
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9533
+ Redirected to http://test.host/fridgets/5/tasks/werk
9534
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9535
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9536
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9537
+ Redirected to http://test.host/fridgets/5/tasks/werk
9538
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9539
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9540
+ Parameters: {"task"=>{"foo"=>"bar"}, "id"=>"152"}
9541
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9542
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9543
+ Parameters: {"id"=>"152"}
9544
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9545
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9546
+ Processing by Bumbleworks::Rails::TasksController#complete as HTML
9547
+ Parameters: {"id"=>"152"}
9548
+ Redirected to http://test.host/
9549
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9550
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9551
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9552
+ Parameters: {"id"=>"152"}
9553
+ Redirected to http://test.host/fridgets/5/tasks/werk
9554
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9555
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9556
+ Parameters: {"id"=>"152"}
9557
+ Redirected to http://test.host/fridgets/5/tasks/werk
9558
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9559
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9560
+ Parameters: {"id"=>"152"}
9561
+ Redirected to http://test.host/fridgets/5/tasks/werk
9562
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9563
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9564
+ Parameters: {"id"=>"152"}
9565
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9566
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9567
+ Processing by Bumbleworks::Rails::TasksController#claim as HTML
9568
+ Parameters: {"id"=>"152"}
9569
+ Redirected to http://test.host/
9570
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9571
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9572
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9573
+ Parameters: {"id"=>"152"}
9574
+ Redirected to http://test.host/fridgets/5/tasks
9575
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9576
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9577
+ Parameters: {"id"=>"152"}
9578
+ Redirected to http://test.host/fridgets/5/tasks
9579
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9580
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9581
+ Parameters: {"id"=>"152"}
9582
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9583
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9584
+ Processing by Bumbleworks::Rails::TasksController#release as HTML
9585
+ Parameters: {"id"=>"152"}
9586
+ Redirected to http://test.host/
9587
+ Filter chain halted as :load_and_authorize_task rendered or redirected
9588
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
9589
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9590
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
9591
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9592
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9593
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
9594
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9595
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9596
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9597
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"5"}
9598
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
9599
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9600
+ Parameters: {"entity_type"=>"goof", "entity_id"=>"2"}
9601
+ Filter chain halted as :load_entity rendered or redirected
9602
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9603
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9604
+ Parameters: {"entity_type"=>"fridget", "entity_id"=>"3"}
9605
+ Filter chain halted as :load_entity rendered or redirected
9606
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
9607
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9608
+ Parameters: {"entity_type"=>"smoo", "entity_id"=>"2"}
9609
+ Filter chain halted as :load_entity rendered or redirected
9610
+ Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
9611
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9612
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
9613
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9614
+ Parameters: {"entity_type"=>"silvo_blooms", "entity_id"=>"5"}
9615
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
9616
+ Processing by Bumbleworks::Rails::TasksController#index as HTML
9617
+ Parameters: {"entity_type"=>"fridgets", "entity_id"=>"6"}
9618
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bumbleworks-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ravi Gadad
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-24 00:00:00.000000000 Z
11
+ date: 2014-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -142,6 +142,7 @@ files:
142
142
  - app/views/bumbleworks/rails/tasks/_table.html.erb
143
143
  - app/views/bumbleworks/rails/tasks/index.html.erb
144
144
  - app/views/bumbleworks/rails/tasks/show.html.erb
145
+ - config/locales/en.yml
145
146
  - config/routes.rb
146
147
  - lib/bumbleworks/rails.rb
147
148
  - lib/bumbleworks/rails/engine.rb