flyboy 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. data/app/controllers/flyboy/tasks_controller.rb +1 -5
  2. data/app/views/flyboy/tasks/_context.html.slim +0 -2
  3. data/app/views/flyboy/tasks/_form.html.slim +0 -2
  4. data/app/views/flyboy/tasks/show.html.slim +3 -3
  5. data/config/locales/fr.yml +0 -2
  6. data/db/migrate/20150409081956_remove_tasks_cost_and_budget.rb +6 -0
  7. data/lib/flyboy/version.rb +1 -1
  8. data/spec/dummy/db/development.sqlite3 +0 -0
  9. data/spec/dummy/db/schema.rb +1 -3
  10. data/spec/dummy/db/test.sqlite3 +0 -0
  11. data/spec/dummy/log/development.log +412 -0
  12. data/spec/dummy/log/test.log +2170 -0
  13. data/spec/dummy/tmp/cache/assets/development/sass/134a214c49ad52e0bb93a0a160487bfdaaf2bdd2/application.sassc +0 -0
  14. data/spec/dummy/tmp/cache/assets/development/sass/4cd3136ea73cf27a824cea21f80648c87f40dfa2/all.sassc +0 -0
  15. data/spec/dummy/tmp/cache/assets/development/sass/fb6c1556007c0c71ec7303cbe05ae7e36aeaa714/all.sassc +0 -0
  16. data/spec/dummy/tmp/cache/assets/development/sass/fb6c1556007c0c71ec7303cbe05ae7e36aeaa714/comments.sassc +0 -0
  17. data/spec/dummy/tmp/cache/assets/development/sass/fb6c1556007c0c71ec7303cbe05ae7e36aeaa714/contexts.sassc +0 -0
  18. data/spec/dummy/tmp/cache/assets/development/sass/fb6c1556007c0c71ec7303cbe05ae7e36aeaa714/filters.sassc +0 -0
  19. data/spec/dummy/tmp/cache/assets/development/sass/fb6c1556007c0c71ec7303cbe05ae7e36aeaa714/forms.sassc +0 -0
  20. data/spec/dummy/tmp/cache/assets/development/sass/fb6c1556007c0c71ec7303cbe05ae7e36aeaa714/styles.sassc +0 -0
  21. data/spec/dummy/tmp/cache/assets/development/sass/fb6c1556007c0c71ec7303cbe05ae7e36aeaa714/tables.sassc +0 -0
  22. data/spec/dummy/tmp/cache/assets/development/sprockets/a88d9c609d05fcc4670c8742b41816c0 +0 -0
  23. data/spec/dummy/tmp/cache/assets/development/sprockets/d87810c66e05721ba749c5901c1af296 +0 -0
  24. data/spec/dummy/tmp/cache/assets/development/sprockets/ebe08f689f659c024f467b77f32a1c49 +0 -0
  25. data/spec/factories/flyboy_tasks.rb +0 -1
  26. metadata +21 -4
@@ -123,11 +123,7 @@ module Flyboy
123
123
  end
124
124
 
125
125
  def permitted_params
126
- [
127
- :goal_id,
128
- :title, :description, :progress,
129
- :term, :reminder, :cost, :budget
130
- ]
126
+ [:goal_id, :title, :description, :progress, :term, :reminder]
131
127
  end
132
128
 
133
129
  def task_params
@@ -13,5 +13,3 @@
13
13
  = context_info Flyboy::Task.human_attribute_name(:reminder), l(task.reminder)
14
14
  = context_info Flyboy::Task.human_attribute_name(:term), l(task.term)
15
15
  = context_info Flyboy::Task.human_attribute_name(:done), task.done ? 'Oui' : 'Non'
16
- = context_info Flyboy::Task.human_attribute_name(:cost), task.cost
17
- = context_info Flyboy::Task.human_attribute_name(:budget), task.budget
@@ -17,8 +17,6 @@
17
17
  = f.input :description
18
18
  = f.input :reminder, html5: true
19
19
  = f.input :term, html5: true
20
- = f.input :budget
21
- = f.input :cost
22
20
 
23
21
  = f.hidden_field :goal_id
24
22
 
@@ -5,10 +5,10 @@
5
5
  = render "flyboy/goals/context", goal: @task.goal
6
6
 
7
7
  - content_for :main do
8
- - if @task.description.present?
9
- .well = text2html @task.description
10
-
11
8
  .task-comments
12
9
  = render partial: "flyboy/task_comments/list", locals: {task: @task}
13
10
 
11
+ - if @task.description.present?
12
+ .well = text2html @task.description
13
+
14
14
  = render_contextual
@@ -59,8 +59,6 @@ fr:
59
59
  reminder: "Rappel"
60
60
  term: "Echéance"
61
61
  done: "Fait ?"
62
- cost: "Coût"
63
- budget: "Budget"
64
62
  description: "Description"
65
63
  goal_id: "Dossier"
66
64
  progress: "Progression"
@@ -0,0 +1,6 @@
1
+ class RemoveTasksCostAndBudget < ActiveRecord::Migration
2
+ def change
3
+ remove_column :flyboy_tasks, :cost
4
+ remove_column :flyboy_tasks, :budget
5
+ end
6
+ end
@@ -1,3 +1,3 @@
1
1
  module Flyboy
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
Binary file
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20150407070804) do
14
+ ActiveRecord::Schema.define(version: 20150409081956) do
15
15
 
16
16
  create_table "flyboy_goals", force: :cascade do |t|
17
17
  t.string "title"
@@ -40,8 +40,6 @@ ActiveRecord::Schema.define(version: 20150407070804) do
40
40
  t.boolean "done"
41
41
  t.date "term"
42
42
  t.date "reminder"
43
- t.integer "cost"
44
- t.integer "budget"
45
43
  t.datetime "created_at", null: false
46
44
  t.datetime "updated_at", null: false
47
45
  end
Binary file
@@ -62012,3 +62012,415 @@ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for
62012
62012
 
62013
62013
 
62014
62014
  Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-08 10:35:14 +0200
62015
+
62016
+
62017
+ Started GET "/" for 127.0.0.1 at 2015-04-09 08:57:44 +0200
62018
+ Processing by Rails::WelcomeController#index as HTML
62019
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (6.1ms)
62020
+ Completed 200 OK in 80ms (Views: 24.1ms | ActiveRecord: 0.0ms)
62021
+
62022
+
62023
+ Started GET "/flyboy/goals" for 127.0.0.1 at 2015-04-09 08:57:48 +0200
62024
+ Processing by Flyboy::GoalsController#index as HTML
62025
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/_filters.html.slim (13.7ms)
62026
+ Flyboy::Goal Load (4.7ms) SELECT "flyboy_goals".* FROM "flyboy_goals" ORDER BY status ASC
62027
+  (0.6ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 2 AND done = 'f' AND term < '2015-04-09')
62028
+  (0.2ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 2 AND done = 'f' AND term > '2015-04-09' AND reminder < '2015-04-09')
62029
+  (0.3ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62030
+  (0.2ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62031
+ CACHE (0.0ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62032
+  (0.2ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 1 AND done = 'f' AND term < '2015-04-09')
62033
+  (0.2ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 1 AND done = 'f' AND term > '2015-04-09' AND reminder < '2015-04-09')
62034
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 1]]
62035
+  (0.1ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 1]]
62036
+ CACHE (0.0ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 1]]
62037
+  (0.2ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 3 AND done = 'f' AND term < '2015-04-09')
62038
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 3 AND done = 'f' AND term > '2015-04-09' AND reminder < '2015-04-09')
62039
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62040
+  (0.1ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62041
+ CACHE (0.0ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62042
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 5 AND done = 'f' AND term < '2015-04-09')
62043
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE (goal_id = 5 AND done = 'f' AND term > '2015-04-09' AND reminder < '2015-04-09')
62044
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 5]]
62045
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/index.html.slim within layouts/application (2337.3ms)
62046
+ Completed 200 OK in 5903ms (Views: 5751.4ms | ActiveRecord: 8.2ms)
62047
+
62048
+
62049
+ Started GET "/assets/application-1ca27a7ca6d3840b2b98bb4437a8bec6.css?body=1" for 127.0.0.1 at 2015-04-09 08:57:54 +0200
62050
+
62051
+
62052
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:54 +0200
62053
+
62054
+
62055
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:54 +0200
62056
+
62057
+
62058
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:54 +0200
62059
+
62060
+
62061
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 08:57:54 +0200
62062
+
62063
+
62064
+ Started GET "/flyboy/goals/2" for 127.0.0.1 at 2015-04-09 08:57:55 +0200
62065
+ Processing by Flyboy::GoalsController#show as HTML
62066
+ Parameters: {"id"=>"2"}
62067
+ Flyboy::Goal Load (0.3ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 2]]
62068
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_actions.html.slim (6.8ms)
62069
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62070
+  (0.1ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62071
+ CACHE (0.0ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62072
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_context.html.slim (16.2ms)
62073
+ Flyboy::Task Load (0.2ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? ORDER BY term ASC, term DESC [["goal_id", 2]]
62074
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_list.html.slim (9.6ms)
62075
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (3.9ms)
62076
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/show.html.slim within layouts/application (39.7ms)
62077
+ Completed 200 OK in 144ms (Views: 126.0ms | ActiveRecord: 0.8ms)
62078
+
62079
+
62080
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:56 +0200
62081
+
62082
+
62083
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:56 +0200
62084
+
62085
+
62086
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:56 +0200
62087
+
62088
+
62089
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 08:57:56 +0200
62090
+
62091
+
62092
+ Started GET "/flyboy/tasks/6" for 127.0.0.1 at 2015-04-09 08:57:57 +0200
62093
+ Processing by Flyboy::TasksController#show as HTML
62094
+ Parameters: {"id"=>"6"}
62095
+ Flyboy::Task Load (0.2ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? ORDER BY term ASC LIMIT 1 [["id", 6]]
62096
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 2]]
62097
+ CACHE (0.0ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? ORDER BY term ASC LIMIT 1 [["id", "6"]]
62098
+ CACHE (0.0ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 2]]
62099
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_actions.html.slim (5.1ms)
62100
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_context.html.slim (13.2ms)
62101
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_actions.html.slim (2.6ms)
62102
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62103
+  (0.1ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62104
+ CACHE (0.0ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 2]]
62105
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_context.html.slim (7.2ms)
62106
+ Flyboy::Task Load (0.3ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? LIMIT 1 [["id", 6]]
62107
+ Flyboy::TaskComment Load (0.6ms) SELECT "flyboy_task_comments".* FROM "flyboy_task_comments" WHERE "flyboy_task_comments"."task_id" = ? ORDER BY created_at DESC [["task_id", 6]]
62108
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/task_comments/_list.html.slim (318.4ms)
62109
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.3ms)
62110
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/show.html.slim within layouts/application (351.9ms)
62111
+ Completed 200 OK in 401ms (Views: 395.7ms | ActiveRecord: 1.7ms)
62112
+
62113
+
62114
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:58 +0200
62115
+
62116
+
62117
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:58 +0200
62118
+
62119
+
62120
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 08:57:58 +0200
62121
+
62122
+
62123
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 08:57:58 +0200
62124
+
62125
+
62126
+ Started GET "/flyboy/goals/3" for 127.0.0.1 at 2015-04-09 08:58:03 +0200
62127
+ Processing by Flyboy::GoalsController#show as HTML
62128
+ Parameters: {"id"=>"3"}
62129
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 3]]
62130
+  (0.3ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? AND "flyboy_tasks"."done" = 'f' [["goal_id", 3]]
62131
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_actions.html.slim (5.5ms)
62132
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62133
+  (0.1ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62134
+ CACHE (0.0ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62135
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_context.html.slim (11.7ms)
62136
+ Flyboy::Task Load (0.1ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? ORDER BY term ASC, term DESC [["goal_id", 3]]
62137
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_list.html.slim (4.5ms)
62138
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.3ms)
62139
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/show.html.slim within layouts/application (21.7ms)
62140
+ Completed 200 OK in 66ms (Views: 63.7ms | ActiveRecord: 0.8ms)
62141
+
62142
+
62143
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 08:58:03 +0200
62144
+
62145
+
62146
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 08:58:03 +0200
62147
+
62148
+
62149
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 08:58:03 +0200
62150
+
62151
+
62152
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 08:58:03 +0200
62153
+
62154
+
62155
+ Started GET "/flyboy/goals/5" for 127.0.0.1 at 2015-04-09 08:58:06 +0200
62156
+ Processing by Flyboy::GoalsController#show as HTML
62157
+ Parameters: {"id"=>"5"}
62158
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 5]]
62159
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? AND "flyboy_tasks"."done" = 'f' [["goal_id", 5]]
62160
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_actions.html.slim (4.4ms)
62161
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 5]]
62162
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_context.html.slim (7.0ms)
62163
+ Flyboy::Task Load (0.1ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? ORDER BY term ASC, term DESC [["goal_id", 5]]
62164
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_list.html.slim (0.7ms)
62165
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.3ms)
62166
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/show.html.slim within layouts/application (12.4ms)
62167
+ Completed 200 OK in 54ms (Views: 52.6ms | ActiveRecord: 0.4ms)
62168
+
62169
+
62170
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 08:58:06 +0200
62171
+
62172
+
62173
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 08:58:06 +0200
62174
+
62175
+
62176
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 08:58:06 +0200
62177
+
62178
+
62179
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 08:58:06 +0200
62180
+
62181
+
62182
+ Started GET "/flyboy/goals/3" for 127.0.0.1 at 2015-04-09 08:59:42 +0200
62183
+ Processing by Flyboy::GoalsController#show as HTML
62184
+ Parameters: {"id"=>"3"}
62185
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 3]]
62186
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? AND "flyboy_tasks"."done" = 'f' [["goal_id", 3]]
62187
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_actions.html.slim (4.2ms)
62188
+  (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62189
+  (0.1ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62190
+ CACHE (0.0ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 3]]
62191
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_context.html.slim (8.4ms)
62192
+ Flyboy::Task Load (0.1ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? ORDER BY term ASC, term DESC [["goal_id", 3]]
62193
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_list.html.slim (3.3ms)
62194
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.4ms)
62195
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/show.html.slim within layouts/application (18.0ms)
62196
+ Completed 200 OK in 121ms (Views: 118.5ms | ActiveRecord: 0.6ms)
62197
+
62198
+
62199
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 08:59:43 +0200
62200
+
62201
+
62202
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 08:59:43 +0200
62203
+
62204
+
62205
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 08:59:43 +0200
62206
+
62207
+
62208
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 08:59:43 +0200
62209
+
62210
+
62211
+ Started GET "/flyboy/tasks/7/edit" for 127.0.0.1 at 2015-04-09 08:59:44 +0200
62212
+ Processing by Flyboy::TasksController#edit as HTML
62213
+ Parameters: {"id"=>"7"}
62214
+ Flyboy::Task Load (0.1ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? ORDER BY term ASC LIMIT 1 [["id", 7]]
62215
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 3]]
62216
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.1ms)
62217
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_form.html.slim (102.1ms)
62218
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/edit.html.slim within layouts/application (107.9ms)
62219
+ Completed 200 OK in 158ms (Views: 154.0ms | ActiveRecord: 0.2ms)
62220
+
62221
+
62222
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 08:59:44 +0200
62223
+
62224
+
62225
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 08:59:44 +0200
62226
+
62227
+
62228
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 08:59:44 +0200
62229
+
62230
+
62231
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 08:59:44 +0200
62232
+
62233
+
62234
+ Started GET "/flyboy/tasks/7/edit" for 127.0.0.1 at 2015-04-09 09:00:00 +0200
62235
+ Processing by Flyboy::TasksController#edit as HTML
62236
+ Parameters: {"id"=>"7"}
62237
+ Flyboy::Task Load (0.1ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? ORDER BY term ASC LIMIT 1 [["id", 7]]
62238
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 3]]
62239
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.1ms)
62240
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_form.html.slim (86.5ms)
62241
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/edit.html.slim within layouts/application (89.0ms)
62242
+ Completed 200 OK in 144ms (Views: 141.2ms | ActiveRecord: 0.2ms)
62243
+
62244
+
62245
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:00 +0200
62246
+
62247
+
62248
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:00 +0200
62249
+
62250
+
62251
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:00 +0200
62252
+
62253
+
62254
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 09:00:00 +0200
62255
+
62256
+
62257
+ Started GET "/flyboy/goals/3/tasks/new" for 127.0.0.1 at 2015-04-09 09:00:52 +0200
62258
+ Processing by Flyboy::TasksController#new as HTML
62259
+ Parameters: {"goal_id"=>"3"}
62260
+ Flyboy::Goal Load (0.2ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 3]]
62261
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.2ms)
62262
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_form.html.slim (91.0ms)
62263
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/new.html.slim within layouts/application (95.4ms)
62264
+ Completed 200 OK in 142ms (Views: 138.0ms | ActiveRecord: 0.1ms)
62265
+
62266
+
62267
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:52 +0200
62268
+
62269
+
62270
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:52 +0200
62271
+
62272
+
62273
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:52 +0200
62274
+
62275
+
62276
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 09:00:52 +0200
62277
+
62278
+
62279
+ Started GET "/flyboy/goals/new" for 127.0.0.1 at 2015-04-09 09:00:55 +0200
62280
+ Processing by Flyboy::GoalsController#new as HTML
62281
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (0.3ms)
62282
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_form.html.slim (20.5ms)
62283
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/new.html.slim within layouts/application (27.2ms)
62284
+ Completed 200 OK in 78ms (Views: 76.4ms | ActiveRecord: 0.0ms)
62285
+
62286
+
62287
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:55 +0200
62288
+
62289
+
62290
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:55 +0200
62291
+
62292
+
62293
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 09:00:55 +0200
62294
+
62295
+
62296
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 09:00:56 +0200
62297
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
62298
+ Migrating to RemoveTasksCostAndBudget (20150409081956)
62299
+  (0.1ms) begin transaction
62300
+  (1.4ms) CREATE TEMPORARY TABLE "aflyboy_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "goal_id" integer, "title" varchar, "description" text, "progress" integer DEFAULT 0, "done" boolean, "term" date, "reminder" date, "cost" integer, "budget" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
62301
+  (0.6ms) SELECT * FROM "flyboy_tasks"
62302
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","cost","budget","created_at","updated_at") VALUES (1, 1, 'Ceci est une tâche', 'plop', 100, 't', '2015-04-12', '2015-04-09', NULL, NULL, '2015-04-01 12:37:05.948535', '2015-04-03 10:29:02.948138')
62303
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","cost","budget","created_at","updated_at") VALUES (2, 1, 'Une autre tâche', '', 4, 'f', '2015-04-17', '2015-04-14', NULL, NULL, '2015-04-01 14:32:31.180458', '2015-04-07 12:55:20.218512')
62304
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","cost","budget","created_at","updated_at") VALUES (3, 1, 'Manger des bonbons', '', 100, 't', '2015-04-12', '2015-04-09', NULL, NULL, '2015-04-02 08:54:28.283535', '2015-04-07 12:53:39.318758')
62305
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","cost","budget","created_at","updated_at") VALUES (4, 1, 'aaaqqq', '', 100, 't', '2015-04-12', '2015-04-09', NULL, NULL, '2015-04-02 09:33:02.564377', '2015-04-02 09:49:32.210781')
62306
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","cost","budget","created_at","updated_at") VALUES (5, 1, 'Yep', '', 0, 'f', '2015-04-13', '2015-04-10', NULL, NULL, '2015-04-03 12:15:47.985940', '2015-04-03 12:15:47.985940')
62307
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","cost","budget","created_at","updated_at") VALUES (6, 2, 'mpmmpmpmpmpmpm', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse dictum enim quis convallis porttitor. Vestibulum varius metus non eleifend sagittis. Integer a est eget sapien ultricies viverra. In sed rutrum dolor. Aliquam accumsan sem neque, vitae aliquet erat ultricies in. Vestibulum euismod iaculis diam quis venenatis. Mauris lectus libero, rutrum id lectus vitae, aliquam suscipit elit.
62308
+
62309
+ Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nunc ut ipsum a neque malesuada tincidunt in eu magna. Quisque dapibus nunc at feugiat vestibulum. Pellentesque sem erat, pretium nec tempus vitae, finibus quis augue. In hac habitasse platea dictumst. Curabitur rhoncus molestie eros, ut euismod sem blandit et. Pellentesque eget tincidunt orci. Nulla facilisi. Mauris maximus cursus est eget accumsan. Nulla facilisi. In tristique tellus vel massa semper malesuada.
62310
+ ', 100, 't', '2015-04-13', '2015-04-10', NULL, NULL, '2015-04-03 12:48:23.946797', '2015-04-07 10:05:13.876602')
62311
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","cost","budget","created_at","updated_at") VALUES (7, 3, 'Ceci est une tâche', '', 0, 'f', '2015-04-17', '2015-04-14', NULL, NULL, '2015-04-07 08:59:41.112979', '2015-04-07 08:59:41.112979')
62312
+  (1.0ms) DROP TABLE "flyboy_tasks"
62313
+  (0.2ms) CREATE TABLE "flyboy_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "goal_id" integer, "title" varchar, "description" text, "progress" integer DEFAULT 0, "done" boolean, "term" date, "reminder" date, "budget" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
62314
+  (0.1ms) SELECT * FROM "aflyboy_tasks"
62315
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (1, 1, 'Ceci est une tâche', 'plop', 100, 't', '2015-04-12', '2015-04-09', NULL, '2015-04-01 12:37:05.948535', '2015-04-03 10:29:02.948138')
62316
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (2, 1, 'Une autre tâche', '', 4, 'f', '2015-04-17', '2015-04-14', NULL, '2015-04-01 14:32:31.180458', '2015-04-07 12:55:20.218512')
62317
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (3, 1, 'Manger des bonbons', '', 100, 't', '2015-04-12', '2015-04-09', NULL, '2015-04-02 08:54:28.283535', '2015-04-07 12:53:39.318758')
62318
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (4, 1, 'aaaqqq', '', 100, 't', '2015-04-12', '2015-04-09', NULL, '2015-04-02 09:33:02.564377', '2015-04-02 09:49:32.210781')
62319
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (5, 1, 'Yep', '', 0, 'f', '2015-04-13', '2015-04-10', NULL, '2015-04-03 12:15:47.985940', '2015-04-03 12:15:47.985940')
62320
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (6, 2, 'mpmmpmpmpmpmpm', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse dictum enim quis convallis porttitor. Vestibulum varius metus non eleifend sagittis. Integer a est eget sapien ultricies viverra. In sed rutrum dolor. Aliquam accumsan sem neque, vitae aliquet erat ultricies in. Vestibulum euismod iaculis diam quis venenatis. Mauris lectus libero, rutrum id lectus vitae, aliquam suscipit elit.
62321
+
62322
+ Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nunc ut ipsum a neque malesuada tincidunt in eu magna. Quisque dapibus nunc at feugiat vestibulum. Pellentesque sem erat, pretium nec tempus vitae, finibus quis augue. In hac habitasse platea dictumst. Curabitur rhoncus molestie eros, ut euismod sem blandit et. Pellentesque eget tincidunt orci. Nulla facilisi. Mauris maximus cursus est eget accumsan. Nulla facilisi. In tristique tellus vel massa semper malesuada.
62323
+ ', 100, 't', '2015-04-13', '2015-04-10', NULL, '2015-04-03 12:48:23.946797', '2015-04-07 10:05:13.876602')
62324
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (7, 3, 'Ceci est une tâche', '', 0, 'f', '2015-04-17', '2015-04-14', NULL, '2015-04-07 08:59:41.112979', '2015-04-07 08:59:41.112979')
62325
+  (0.4ms) DROP TABLE "aflyboy_tasks"
62326
+  (0.2ms) CREATE TEMPORARY TABLE "aflyboy_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "goal_id" integer, "title" varchar, "description" text, "progress" integer DEFAULT 0, "done" boolean, "term" date, "reminder" date, "budget" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
62327
+  (0.1ms) SELECT * FROM "flyboy_tasks"
62328
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (1, 1, 'Ceci est une tâche', 'plop', 100, 't', '2015-04-12', '2015-04-09', NULL, '2015-04-01 12:37:05.948535', '2015-04-03 10:29:02.948138')
62329
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (2, 1, 'Une autre tâche', '', 4, 'f', '2015-04-17', '2015-04-14', NULL, '2015-04-01 14:32:31.180458', '2015-04-07 12:55:20.218512')
62330
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (3, 1, 'Manger des bonbons', '', 100, 't', '2015-04-12', '2015-04-09', NULL, '2015-04-02 08:54:28.283535', '2015-04-07 12:53:39.318758')
62331
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (4, 1, 'aaaqqq', '', 100, 't', '2015-04-12', '2015-04-09', NULL, '2015-04-02 09:33:02.564377', '2015-04-02 09:49:32.210781')
62332
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (5, 1, 'Yep', '', 0, 'f', '2015-04-13', '2015-04-10', NULL, '2015-04-03 12:15:47.985940', '2015-04-03 12:15:47.985940')
62333
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (6, 2, 'mpmmpmpmpmpmpm', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse dictum enim quis convallis porttitor. Vestibulum varius metus non eleifend sagittis. Integer a est eget sapien ultricies viverra. In sed rutrum dolor. Aliquam accumsan sem neque, vitae aliquet erat ultricies in. Vestibulum euismod iaculis diam quis venenatis. Mauris lectus libero, rutrum id lectus vitae, aliquam suscipit elit.
62334
+
62335
+ Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nunc ut ipsum a neque malesuada tincidunt in eu magna. Quisque dapibus nunc at feugiat vestibulum. Pellentesque sem erat, pretium nec tempus vitae, finibus quis augue. In hac habitasse platea dictumst. Curabitur rhoncus molestie eros, ut euismod sem blandit et. Pellentesque eget tincidunt orci. Nulla facilisi. Mauris maximus cursus est eget accumsan. Nulla facilisi. In tristique tellus vel massa semper malesuada.
62336
+ ', 100, 't', '2015-04-13', '2015-04-10', NULL, '2015-04-03 12:48:23.946797', '2015-04-07 10:05:13.876602')
62337
+  (0.1ms) INSERT INTO "aflyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","budget","created_at","updated_at") VALUES (7, 3, 'Ceci est une tâche', '', 0, 'f', '2015-04-17', '2015-04-14', NULL, '2015-04-07 08:59:41.112979', '2015-04-07 08:59:41.112979')
62338
+  (0.4ms) DROP TABLE "flyboy_tasks"
62339
+  (0.1ms) CREATE TABLE "flyboy_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "goal_id" integer, "title" varchar, "description" text, "progress" integer DEFAULT 0, "done" boolean, "term" date, "reminder" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
62340
+  (0.1ms) SELECT * FROM "aflyboy_tasks"
62341
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","created_at","updated_at") VALUES (1, 1, 'Ceci est une tâche', 'plop', 100, 't', '2015-04-12', '2015-04-09', '2015-04-01 12:37:05.948535', '2015-04-03 10:29:02.948138')
62342
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","created_at","updated_at") VALUES (2, 1, 'Une autre tâche', '', 4, 'f', '2015-04-17', '2015-04-14', '2015-04-01 14:32:31.180458', '2015-04-07 12:55:20.218512')
62343
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","created_at","updated_at") VALUES (3, 1, 'Manger des bonbons', '', 100, 't', '2015-04-12', '2015-04-09', '2015-04-02 08:54:28.283535', '2015-04-07 12:53:39.318758')
62344
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","created_at","updated_at") VALUES (4, 1, 'aaaqqq', '', 100, 't', '2015-04-12', '2015-04-09', '2015-04-02 09:33:02.564377', '2015-04-02 09:49:32.210781')
62345
+  (0.0ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","created_at","updated_at") VALUES (5, 1, 'Yep', '', 0, 'f', '2015-04-13', '2015-04-10', '2015-04-03 12:15:47.985940', '2015-04-03 12:15:47.985940')
62346
+  (0.1ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","created_at","updated_at") VALUES (6, 2, 'mpmmpmpmpmpmpm', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse dictum enim quis convallis porttitor. Vestibulum varius metus non eleifend sagittis. Integer a est eget sapien ultricies viverra. In sed rutrum dolor. Aliquam accumsan sem neque, vitae aliquet erat ultricies in. Vestibulum euismod iaculis diam quis venenatis. Mauris lectus libero, rutrum id lectus vitae, aliquam suscipit elit.
62347
+
62348
+ Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nunc ut ipsum a neque malesuada tincidunt in eu magna. Quisque dapibus nunc at feugiat vestibulum. Pellentesque sem erat, pretium nec tempus vitae, finibus quis augue. In hac habitasse platea dictumst. Curabitur rhoncus molestie eros, ut euismod sem blandit et. Pellentesque eget tincidunt orci. Nulla facilisi. Mauris maximus cursus est eget accumsan. Nulla facilisi. In tristique tellus vel massa semper malesuada.
62349
+ ', 100, 't', '2015-04-13', '2015-04-10', '2015-04-03 12:48:23.946797', '2015-04-07 10:05:13.876602')
62350
+  (0.0ms) INSERT INTO "flyboy_tasks" ("id","goal_id","title","description","progress","done","term","reminder","created_at","updated_at") VALUES (7, 3, 'Ceci est une tâche', '', 0, 'f', '2015-04-17', '2015-04-14', '2015-04-07 08:59:41.112979', '2015-04-07 08:59:41.112979')
62351
+  (0.1ms) DROP TABLE "aflyboy_tasks"
62352
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150409081956"]]
62353
+  (1.3ms) commit transaction
62354
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
62355
+
62356
+
62357
+ Started GET "/flyboy/" for 127.0.0.1 at 2015-04-09 10:24:41 +0200
62358
+
62359
+
62360
+ Started GET "/flyboy/tasks" for 127.0.0.1 at 2015-04-09 10:24:41 +0200
62361
+ Processing by Flyboy::TasksController#index as HTML
62362
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/_filters.html.slim (52.2ms)
62363
+ Flyboy::Task Load (3.2ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" ORDER BY term ASC
62364
+ Flyboy::Goal Load (0.3ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 1]]
62365
+ CACHE (0.0ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 1]]
62366
+ CACHE (0.0ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 1]]
62367
+ CACHE (0.0ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 1]]
62368
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 2]]
62369
+ CACHE (0.0ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 1]]
62370
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 3]]
62371
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_list.html.slim (2270.5ms)
62372
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/index.html.slim within layouts/application (2347.9ms)
62373
+ Completed 200 OK in 2647ms (Views: 2476.8ms | ActiveRecord: 4.7ms)
62374
+
62375
+
62376
+ Started GET "/assets/application-1ca27a7ca6d3840b2b98bb4437a8bec6.css?body=1" for 127.0.0.1 at 2015-04-09 10:24:43 +0200
62377
+
62378
+
62379
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 10:24:44 +0200
62380
+
62381
+
62382
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 10:24:44 +0200
62383
+
62384
+
62385
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 10:24:44 +0200
62386
+
62387
+
62388
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 10:24:44 +0200
62389
+
62390
+
62391
+ Started GET "/flyboy/tasks/1" for 127.0.0.1 at 2015-04-09 10:24:46 +0200
62392
+ Processing by Flyboy::TasksController#show as HTML
62393
+ Parameters: {"id"=>"1"}
62394
+ Flyboy::Task Load (0.2ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? ORDER BY term ASC LIMIT 1 [["id", 1]]
62395
+ Flyboy::Goal Load (0.1ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 1]]
62396
+ CACHE (0.0ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? ORDER BY term ASC LIMIT 1 [["id", "1"]]
62397
+ CACHE (0.0ms) SELECT "flyboy_goals".* FROM "flyboy_goals" WHERE "flyboy_goals"."id" = ? LIMIT 1 [["id", 1]]
62398
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_actions.html.slim (6.4ms)
62399
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/_context.html.slim (14.1ms)
62400
+  (0.2ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? AND "flyboy_tasks"."done" = 'f' [["goal_id", 1]]
62401
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_actions.html.slim (20.9ms)
62402
+  (0.2ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 1]]
62403
+  (0.4ms) SELECT SUM("flyboy_tasks"."progress") FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 1]]
62404
+ CACHE (0.1ms) SELECT COUNT(*) FROM "flyboy_tasks" WHERE "flyboy_tasks"."goal_id" = ? [["goal_id", 1]]
62405
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/goals/_context.html.slim (32.8ms)
62406
+ Flyboy::Task Load (0.2ms) SELECT "flyboy_tasks".* FROM "flyboy_tasks" WHERE "flyboy_tasks"."id" = ? LIMIT 1 [["id", 1]]
62407
+ Flyboy::TaskComment Load (0.2ms) SELECT "flyboy_task_comments".* FROM "flyboy_task_comments" WHERE "flyboy_task_comments"."task_id" = ? ORDER BY created_at DESC [["task_id", 1]]
62408
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/task_comments/_list.html.slim (355.5ms)
62409
+ Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.1.3/app/views/dorsale/_contextual.html.slim (5.1ms)
62410
+ Rendered /Users/benoit/www/agilidee/flyboy/app/views/flyboy/tasks/show.html.slim within layouts/application (419.9ms)
62411
+ Completed 200 OK in 523ms (Views: 460.5ms | ActiveRecord: 2.0ms)
62412
+
62413
+
62414
+ Started GET "/assets/application-1ca27a7ca6d3840b2b98bb4437a8bec6.css?body=1" for 127.0.0.1 at 2015-04-09 10:24:47 +0200
62415
+
62416
+
62417
+ Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-04-09 10:24:47 +0200
62418
+
62419
+
62420
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-09 10:24:47 +0200
62421
+
62422
+
62423
+ Started GET "/assets/application-ccad13f64a955058eed40f9a74e81c11.js?body=1" for 127.0.0.1 at 2015-04-09 10:24:47 +0200
62424
+
62425
+
62426
+ Started GET "/assets/font-awesome/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2" for 127.0.0.1 at 2015-04-09 10:24:47 +0200