formie 0.8.2 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +16 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +30 -0
  6. data/Gemfile +6 -0
  7. data/MIT-LICENSE +1 -1
  8. data/README.md +1 -1
  9. data/Rakefile +1 -23
  10. data/formie.gemspec +38 -0
  11. data/gemfiles/rails4_2.gemfile +6 -0
  12. data/gemfiles/rails5_0.gemfile +6 -0
  13. data/lib/formie/version.rb +1 -1
  14. data/lib/formie.rb +1 -1
  15. data/spec/internal/app/controllers/application_controller.rb +3 -0
  16. data/spec/internal/app/models/order.rb +7 -0
  17. data/spec/internal/config/database.yml +3 -0
  18. data/spec/internal/db/schema.rb +10 -0
  19. data/spec/internal/public/favicon.ico +0 -0
  20. data/test/controllers/orders_test.rb +5 -6
  21. data/test/test_helper.rb +4 -12
  22. metadata +165 -92
  23. data/lib/formie/version.rb.bak +0 -3
  24. data/lib/formie.rb.bak +0 -67
  25. data/test/dummy/Rakefile +0 -6
  26. data/test/dummy/app/controllers/application_controller.rb +0 -8
  27. data/test/dummy/app/models/order.rb +0 -11
  28. data/test/dummy/bin/bundle +0 -3
  29. data/test/dummy/bin/rails +0 -4
  30. data/test/dummy/bin/rake +0 -4
  31. data/test/dummy/bin/setup +0 -29
  32. data/test/dummy/config/application.rb +0 -26
  33. data/test/dummy/config/boot.rb +0 -5
  34. data/test/dummy/config/database.yml +0 -25
  35. data/test/dummy/config/environment.rb +0 -5
  36. data/test/dummy/config/environments/development.rb +0 -41
  37. data/test/dummy/config/environments/production.rb +0 -77
  38. data/test/dummy/config/environments/test.rb +0 -42
  39. data/test/dummy/config/initializers/assets.rb +0 -11
  40. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  42. data/test/dummy/config/initializers/session_store.rb +0 -3
  43. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  44. data/test/dummy/config/locales/en.yml +0 -23
  45. data/test/dummy/config/secrets.yml +0 -22
  46. data/test/dummy/config.ru +0 -4
  47. data/test/dummy/db/development.sqlite3 +0 -0
  48. data/test/dummy/db/migrate/20141016161801_create_orders.rb +0 -10
  49. data/test/dummy/db/schema.rb +0 -23
  50. data/test/dummy/db/test.sqlite3 +0 -0
  51. data/test/dummy/log/test.log +0 -310
  52. /data/{test/dummy → spec/internal}/app/controllers/orders_controller.rb +0 -0
  53. /data/{test/dummy → spec/internal}/app/formies/application/copyright.html.erb +0 -0
  54. /data/{test/dummy → spec/internal}/app/formies/forms/builtins.html.erb +0 -0
  55. /data/{test/dummy → spec/internal}/app/formies/forms/l_text_field.html.erb +0 -0
  56. /data/{test/dummy → spec/internal}/app/formies/templates/hello.slim +0 -0
  57. /data/{test/dummy → spec/internal}/app/formies/templates/l_text_field.html.erb +0 -0
  58. /data/{test/dummy → spec/internal}/app/formies/templates/labelled.html.erb +0 -0
  59. /data/{test/dummy → spec/internal}/app/views/layouts/application.html.erb +0 -0
  60. /data/{test/dummy → spec/internal}/app/views/orders/_form.html.erb +0 -0
  61. /data/{test/dummy → spec/internal}/app/views/orders/_new.html.erb +0 -0
  62. /data/{test/dummy → spec/internal}/app/views/orders/index.html.erb +0 -0
  63. /data/{test/dummy → spec/internal}/app/views/orders/new.html.erb +0 -0
  64. /data/{test/dummy → spec/internal}/app/views/orders/show.html.erb +0 -0
  65. /data/{test/dummy → spec/internal}/config/routes.rb +0 -0
@@ -1,310 +0,0 @@
1
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
- SQL (131.5ms) DELETE FROM "orders"
3
-  (0.1ms) begin transaction
4
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:17:15.764914"], ["updated_at", "2016-12-23 21:17:15.764914"]]
5
-  (110.8ms) commit transaction
6
- Started GET "/orders/new" for 127.0.0.1 at 2016-12-23 22:17:15 +0100
7
- Processing by OrdersController#new as HTML
8
- Rendered app/formies/forms/builtins.html.erb (0.6ms)
9
- Rendered orders/_new.html.erb (2.7ms)
10
- Rendered orders/new.html.erb within layouts/application (6.4ms)
11
- Completed 200 OK in 127ms (Views: 126.3ms | ActiveRecord: 0.0ms)
12
- SQL (109.7ms) DELETE FROM "orders"
13
-  (0.1ms) begin transaction
14
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:17:16.164550"], ["updated_at", "2016-12-23 21:17:16.164550"]]
15
-  (114.8ms) commit transaction
16
- Started GET "/orders" for 127.0.0.1 at 2016-12-23 22:17:16 +0100
17
- Processing by OrdersController#index as HTML
18
- Rendered app/formies/application/copyright.html.erb (0.7ms)
19
- Rendered app/formies/templates/labelled.html.erb (0.3ms)
20
- Rendered app/formies/templates/l_text_field.html.erb (3.4ms)
21
- Rendered orders/index.html.erb within layouts/application (12.7ms)
22
- Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
23
- SQL (115.6ms) DELETE FROM "orders"
24
-  (0.1ms) begin transaction
25
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:17:16.415971"], ["updated_at", "2016-12-23 21:17:16.415971"]]
26
-  (116.1ms) commit transaction
27
- Order Load (0.3ms) SELECT "orders".* FROM "orders" ORDER BY "orders"."id" ASC LIMIT 1
28
- Started GET "/orders/160" for 127.0.0.1 at 2016-12-23 22:17:16 +0100
29
- Processing by OrdersController#show as HTML
30
- Parameters: {"id"=>"160"}
31
-  (0.1ms) begin transaction
32
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "hugo"], ["created_at", "2016-12-23 21:17:16.539032"], ["updated_at", "2016-12-23 21:17:16.539032"]]
33
-  (118.7ms) commit transaction
34
- Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", 160]]
35
- Rendered app/formies/forms/l_text_field.html.erb (10.0ms)
36
- Rendered app/formies/forms/l_text_field.html.erb (0.5ms)
37
- Rendered app/formies/templates/hello.slim (11.9ms)
38
- Rendered orders/_form.html.erb (26.3ms)
39
- Rendered orders/show.html.erb within layouts/application (27.5ms)
40
- Completed 200 OK in 157ms (Views: 29.0ms | ActiveRecord: 119.3ms)
41
-  (0.1ms) begin transaction
42
- ----------------------------------------------------
43
- OrdersControllerTest: test_checking_formie_copyright
44
- ----------------------------------------------------
45
- Processing by OrdersController#index as HTML
46
- Rendered app/formies/application/copyright.html.erb (0.1ms)
47
- Rendered app/formies/templates/labelled.html.erb (0.1ms)
48
- Rendered app/formies/templates/l_text_field.html.erb (0.4ms)
49
- Rendered orders/index.html.erb within layouts/application (1.1ms)
50
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
51
-  (0.1ms) rollback transaction
52
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53
-  (0.1ms) begin transaction
54
- ----------------------------------------------------
55
- OrdersControllerTest: test_checking_formie_copyright
56
- ----------------------------------------------------
57
- Processing by OrdersController#index as HTML
58
- Order Load (0.2ms) SELECT "orders".* FROM "orders"
59
- Rendered app/formies/application/copyright.html.erb (0.7ms)
60
- Rendered app/formies/templates/labelled.html.erb (0.9ms)
61
- Rendered app/formies/templates/l_text_field.html.erb (54.4ms)
62
- Rendered orders/index.html.erb within layouts/application (94.5ms)
63
- Completed 200 OK in 250ms (Views: 247.9ms | ActiveRecord: 0.4ms)
64
-  (0.1ms) rollback transaction
65
- SQL (161.4ms) DELETE FROM "orders"
66
-  (0.1ms) begin transaction
67
- SQL (0.4ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:20:57.232247"], ["updated_at", "2016-12-23 21:20:57.232247"]]
68
-  (118.2ms) commit transaction
69
- Started GET "/orders/new" for 127.0.0.1 at 2016-12-23 22:20:57 +0100
70
- Processing by OrdersController#new as HTML
71
- Rendered app/formies/forms/builtins.html.erb (1.2ms)
72
- Rendered orders/_new.html.erb (23.9ms)
73
- Rendered orders/new.html.erb within layouts/application (30.1ms)
74
- Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.0ms)
75
- SQL (111.4ms) DELETE FROM "orders"
76
-  (0.1ms) begin transaction
77
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:20:57.515569"], ["updated_at", "2016-12-23 21:20:57.515569"]]
78
-  (106.5ms) commit transaction
79
- Started GET "/orders" for 127.0.0.1 at 2016-12-23 22:20:57 +0100
80
- Processing by OrdersController#index as HTML
81
- Order Load (0.3ms) SELECT "orders".* FROM "orders"
82
- Rendered app/formies/application/copyright.html.erb (0.1ms)
83
- Rendered app/formies/templates/labelled.html.erb (0.1ms)
84
- Rendered app/formies/templates/l_text_field.html.erb (94.4ms)
85
- Rendered orders/index.html.erb within layouts/application (222.9ms)
86
- Completed 200 OK in 226ms (Views: 224.9ms | ActiveRecord: 0.3ms)
87
- SQL (103.3ms) DELETE FROM "orders"
88
-  (0.1ms) begin transaction
89
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:20:57.958873"], ["updated_at", "2016-12-23 21:20:57.958873"]]
90
-  (114.8ms) commit transaction
91
- Order Load (0.3ms) SELECT "orders".* FROM "orders" ORDER BY "orders"."id" ASC LIMIT 1
92
- Started GET "/orders/164" for 127.0.0.1 at 2016-12-23 22:20:58 +0100
93
- Processing by OrdersController#show as HTML
94
- Parameters: {"id"=>"164"}
95
-  (0.1ms) begin transaction
96
- SQL (0.3ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "hugo"], ["created_at", "2016-12-23 21:20:58.080779"], ["updated_at", "2016-12-23 21:20:58.080779"]]
97
-  (118.6ms) commit transaction
98
- Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", 164]]
99
- Rendered app/formies/forms/l_text_field.html.erb (19.3ms)
100
- Rendered app/formies/forms/l_text_field.html.erb (1.2ms)
101
- Rendered app/formies/templates/hello.slim (25.0ms)
102
- Rendered orders/_form.html.erb (311.8ms)
103
- Rendered orders/show.html.erb within layouts/application (314.0ms)
104
- Completed 200 OK in 444ms (Views: 316.2ms | ActiveRecord: 119.3ms)
105
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
106
- SQL (157.8ms) DELETE FROM "orders"
107
-  (0.1ms) begin transaction
108
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:22:16.284960"], ["updated_at", "2016-12-23 21:22:16.284960"]]
109
-  (130.5ms) commit transaction
110
- Started GET "/orders/new" for 127.0.0.1 at 2016-12-23 22:22:16 +0100
111
- Processing by OrdersController#new as HTML
112
- Rendered app/formies/forms/builtins.html.erb (0.6ms)
113
- Rendered orders/_new.html.erb (2.5ms)
114
- Rendered orders/new.html.erb within layouts/application (6.1ms)
115
- Completed 200 OK in 127ms (Views: 126.7ms | ActiveRecord: 0.0ms)
116
- SQL (130.5ms) DELETE FROM "orders"
117
-  (0.1ms) begin transaction
118
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:22:16.719660"], ["updated_at", "2016-12-23 21:22:16.719660"]]
119
-  (114.7ms) commit transaction
120
- Started GET "/orders" for 127.0.0.1 at 2016-12-23 22:22:16 +0100
121
- Processing by OrdersController#index as HTML
122
- Rendered app/formies/application/copyright.html.erb (0.7ms)
123
- Rendered app/formies/templates/labelled.html.erb (0.3ms)
124
- Rendered app/formies/templates/l_text_field.html.erb (2.2ms)
125
- Rendered orders/index.html.erb within layouts/application (9.6ms)
126
- Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
127
- SQL (110.7ms) DELETE FROM "orders"
128
-  (0.1ms) begin transaction
129
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:22:16.962861"], ["updated_at", "2016-12-23 21:22:16.962861"]]
130
-  (106.5ms) commit transaction
131
- Order Load (0.3ms) SELECT "orders".* FROM "orders" ORDER BY "orders"."id" ASC LIMIT 1
132
- Started GET "/orders/168" for 127.0.0.1 at 2016-12-23 22:22:17 +0100
133
- Processing by OrdersController#show as HTML
134
- Parameters: {"id"=>"168"}
135
-  (0.1ms) begin transaction
136
- SQL (0.3ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "hugo"], ["created_at", "2016-12-23 21:22:17.076327"], ["updated_at", "2016-12-23 21:22:17.076327"]]
137
-  (111.7ms) commit transaction
138
- Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", 168]]
139
- Rendered app/formies/forms/l_text_field.html.erb (10.0ms)
140
- Rendered app/formies/forms/l_text_field.html.erb (0.5ms)
141
- Rendered app/formies/templates/hello.slim (11.8ms)
142
- Rendered orders/_form.html.erb (26.2ms)
143
- Rendered orders/show.html.erb within layouts/application (27.3ms)
144
- Completed 200 OK in 149ms (Views: 28.6ms | ActiveRecord: 112.3ms)
145
-  (0.1ms) begin transaction
146
- ----------------------------------------------------
147
- OrdersControllerTest: test_checking_formie_copyright
148
- ----------------------------------------------------
149
- Processing by OrdersController#index as HTML
150
- Rendered app/formies/application/copyright.html.erb (0.1ms)
151
- Rendered app/formies/templates/labelled.html.erb (0.1ms)
152
- Rendered app/formies/templates/l_text_field.html.erb (0.4ms)
153
- Rendered orders/index.html.erb within layouts/application (1.1ms)
154
- Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
155
-  (0.1ms) rollback transaction
156
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
157
- SQL (131.5ms) DELETE FROM "orders"
158
-  (0.1ms) begin transaction
159
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:22:37.958237"], ["updated_at", "2016-12-23 21:22:37.958237"]]
160
-  (115.1ms) commit transaction
161
- Started GET "/orders/new" for 127.0.0.1 at 2016-12-23 22:22:38 +0100
162
- Processing by OrdersController#new as HTML
163
- Rendered app/formies/forms/builtins.html.erb (0.6ms)
164
- Rendered orders/_new.html.erb (2.4ms)
165
- Rendered orders/new.html.erb within layouts/application (6.0ms)
166
- Completed 200 OK in 127ms (Views: 126.3ms | ActiveRecord: 0.0ms)
167
- SQL (114.5ms) DELETE FROM "orders"
168
-  (0.1ms) begin transaction
169
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:22:38.360992"], ["updated_at", "2016-12-23 21:22:38.360992"]]
170
-  (114.6ms) commit transaction
171
- Started GET "/orders" for 127.0.0.1 at 2016-12-23 22:22:38 +0100
172
- Processing by OrdersController#index as HTML
173
- Rendered app/formies/application/copyright.html.erb (0.3ms)
174
- Rendered app/formies/templates/labelled.html.erb (0.3ms)
175
- Rendered app/formies/templates/l_text_field.html.erb (2.2ms)
176
- Rendered orders/index.html.erb within layouts/application (6.9ms)
177
- Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
178
- SQL (113.3ms) DELETE FROM "orders"
179
-  (0.1ms) begin transaction
180
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:22:38.604154"], ["updated_at", "2016-12-23 21:22:38.604154"]]
181
-  (123.8ms) commit transaction
182
- Order Load (0.3ms) SELECT "orders".* FROM "orders" ORDER BY "orders"."id" ASC LIMIT 1
183
- Started GET "/orders/172" for 127.0.0.1 at 2016-12-23 22:22:38 +0100
184
- Processing by OrdersController#show as HTML
185
- Parameters: {"id"=>"172"}
186
-  (0.2ms) begin transaction
187
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "hugo"], ["created_at", "2016-12-23 21:22:38.735174"], ["updated_at", "2016-12-23 21:22:38.735174"]]
188
-  (119.8ms) commit transaction
189
- Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", 172]]
190
- Rendered app/formies/forms/l_text_field.html.erb (9.9ms)
191
- Rendered app/formies/forms/l_text_field.html.erb (0.5ms)
192
- Rendered app/formies/templates/hello.slim (11.8ms)
193
- Rendered orders/_form.html.erb (26.2ms)
194
- Rendered orders/show.html.erb within layouts/application (28.2ms)
195
- Completed 200 OK in 159ms (Views: 29.9ms | ActiveRecord: 120.4ms)
196
-  (0.1ms) begin transaction
197
- ----------------------------------------------------
198
- OrdersControllerTest: test_checking_formie_copyright
199
- ----------------------------------------------------
200
- Processing by OrdersController#index as HTML
201
- Rendered app/formies/application/copyright.html.erb (0.1ms)
202
- Rendered app/formies/templates/labelled.html.erb (0.1ms)
203
- Rendered app/formies/templates/l_text_field.html.erb (0.3ms)
204
- Rendered orders/index.html.erb within layouts/application (1.0ms)
205
- Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
206
-  (0.1ms) rollback transaction
207
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
208
-  (0.2ms) begin transaction
209
- ----------------------------------------------------
210
- OrdersControllerTest: test_checking_formie_copyright
211
- ----------------------------------------------------
212
- Processing by OrdersController#index as HTML
213
- Order Load (0.2ms) SELECT "orders".* FROM "orders"
214
- Rendered app/formies/application/copyright.html.erb (0.8ms)
215
- Rendered app/formies/templates/labelled.html.erb (0.8ms)
216
- Rendered app/formies/templates/l_text_field.html.erb (57.7ms)
217
- Rendered orders/index.html.erb within layouts/application (100.3ms)
218
- Completed 200 OK in 257ms (Views: 255.7ms | ActiveRecord: 0.4ms)
219
-  (0.1ms) rollback transaction
220
- SQL (157.1ms) DELETE FROM "orders"
221
-  (0.1ms) begin transaction
222
- SQL (0.4ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:23:13.621440"], ["updated_at", "2016-12-23 21:23:13.621440"]]
223
-  (133.6ms) commit transaction
224
- Started GET "/orders" for 127.0.0.1 at 2016-12-23 22:23:13 +0100
225
- Processing by OrdersController#index as HTML
226
- Order Load (0.3ms) SELECT "orders".* FROM "orders"
227
- Rendered app/formies/application/copyright.html.erb (0.1ms)
228
- Rendered app/formies/templates/labelled.html.erb (0.1ms)
229
- Rendered app/formies/templates/l_text_field.html.erb (83.5ms)
230
- Rendered orders/index.html.erb within layouts/application (184.9ms)
231
- Completed 200 OK in 187ms (Views: 186.1ms | ActiveRecord: 0.3ms)
232
- SQL (136.0ms) DELETE FROM "orders"
233
-  (0.2ms) begin transaction
234
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:23:14.095258"], ["updated_at", "2016-12-23 21:23:14.095258"]]
235
-  (106.4ms) commit transaction
236
- Order Load (0.3ms) SELECT "orders".* FROM "orders" ORDER BY "orders"."id" ASC LIMIT 1
237
- Started GET "/orders/175" for 127.0.0.1 at 2016-12-23 22:23:14 +0100
238
- Processing by OrdersController#show as HTML
239
- Parameters: {"id"=>"175"}
240
-  (0.1ms) begin transaction
241
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "hugo"], ["created_at", "2016-12-23 21:23:14.208880"], ["updated_at", "2016-12-23 21:23:14.208880"]]
242
-  (110.3ms) commit transaction
243
- Order Load (0.2ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", 175]]
244
- Rendered app/formies/forms/l_text_field.html.erb (19.8ms)
245
- Rendered app/formies/forms/l_text_field.html.erb (1.0ms)
246
- Rendered app/formies/templates/hello.slim (29.4ms)
247
- Rendered orders/_form.html.erb (283.4ms)
248
- Rendered orders/show.html.erb within layouts/application (286.8ms)
249
- Completed 200 OK in 408ms (Views: 288.4ms | ActiveRecord: 110.8ms)
250
- SQL (110.9ms) DELETE FROM "orders"
251
-  (0.1ms) begin transaction
252
- SQL (0.3ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:23:14.731025"], ["updated_at", "2016-12-23 21:23:14.731025"]]
253
-  (124.2ms) commit transaction
254
- Started GET "/orders/new" for 127.0.0.1 at 2016-12-23 22:23:14 +0100
255
- Processing by OrdersController#new as HTML
256
- Rendered app/formies/forms/builtins.html.erb (1.4ms)
257
- Rendered orders/_new.html.erb (49.9ms)
258
- Rendered orders/new.html.erb within layouts/application (52.0ms)
259
- Completed 200 OK in 55ms (Views: 54.6ms | ActiveRecord: 0.0ms)
260
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
261
-  (0.1ms) begin transaction
262
- ----------------------------------------------------
263
- OrdersControllerTest: test_checking_formie_copyright
264
- ----------------------------------------------------
265
- Processing by OrdersController#index as HTML
266
- Rendered app/formies/application/copyright.html.erb (0.4ms)
267
- Rendered app/formies/templates/labelled.html.erb (0.3ms)
268
- Rendered app/formies/templates/l_text_field.html.erb (2.2ms)
269
- Rendered orders/index.html.erb within layouts/application (6.8ms)
270
- Completed 200 OK in 128ms (Views: 126.9ms | ActiveRecord: 0.0ms)
271
-  (0.1ms) rollback transaction
272
- SQL (135.8ms) DELETE FROM "orders"
273
-  (0.1ms) begin transaction
274
- SQL (0.4ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:23:34.404068"], ["updated_at", "2016-12-23 21:23:34.404068"]]
275
-  (117.5ms) commit transaction
276
- Order Load (0.3ms) SELECT "orders".* FROM "orders" ORDER BY "orders"."id" ASC LIMIT 1
277
- Started GET "/orders/178" for 127.0.0.1 at 2016-12-23 22:23:34 +0100
278
- Processing by OrdersController#show as HTML
279
- Parameters: {"id"=>"178"}
280
-  (0.1ms) begin transaction
281
- SQL (0.1ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "hugo"], ["created_at", "2016-12-23 21:23:34.536181"], ["updated_at", "2016-12-23 21:23:34.536181"]]
282
-  (106.8ms) commit transaction
283
- Order Load (0.3ms) SELECT "orders".* FROM "orders" WHERE "orders"."id" = ? LIMIT 1 [["id", 178]]
284
- Rendered app/formies/forms/l_text_field.html.erb (10.0ms)
285
- Rendered app/formies/forms/l_text_field.html.erb (0.5ms)
286
- Rendered app/formies/templates/hello.slim (11.8ms)
287
- Rendered orders/_form.html.erb (26.2ms)
288
- Rendered orders/show.html.erb within layouts/application (32.1ms)
289
- Completed 200 OK in 146ms (Views: 33.9ms | ActiveRecord: 107.3ms)
290
- SQL (110.1ms) DELETE FROM "orders"
291
-  (0.1ms) begin transaction
292
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:23:34.795618"], ["updated_at", "2016-12-23 21:23:34.795618"]]
293
-  (106.4ms) commit transaction
294
- Started GET "/orders" for 127.0.0.1 at 2016-12-23 22:23:34 +0100
295
- Processing by OrdersController#index as HTML
296
- Rendered app/formies/application/copyright.html.erb (0.1ms)
297
- Rendered app/formies/templates/labelled.html.erb (0.1ms)
298
- Rendered app/formies/templates/l_text_field.html.erb (0.7ms)
299
- Rendered orders/index.html.erb within layouts/application (1.8ms)
300
- Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
301
- SQL (117.2ms) DELETE FROM "orders"
302
-  (0.1ms) begin transaction
303
- SQL (0.2ms) INSERT INTO "orders" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Rumpelstilzchen"], ["created_at", "2016-12-23 21:23:35.030434"], ["updated_at", "2016-12-23 21:23:35.030434"]]
304
-  (114.8ms) commit transaction
305
- Started GET "/orders/new" for 127.0.0.1 at 2016-12-23 22:23:35 +0100
306
- Processing by OrdersController#new as HTML
307
- Rendered app/formies/forms/builtins.html.erb (1.2ms)
308
- Rendered orders/_new.html.erb (4.7ms)
309
- Rendered orders/new.html.erb within layouts/application (6.7ms)
310
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
File without changes