rails-i18nterface 0.1.0

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 (51) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +22 -0
  3. data/README.md +109 -0
  4. data/Rakefile +23 -0
  5. data/app/assets/javascripts/rails_i18nterface/application.js +8 -0
  6. data/app/assets/javascripts/rails_i18nterface/base.js +62 -0
  7. data/app/assets/javascripts/rails_i18nterface/ender.js +3260 -0
  8. data/app/assets/javascripts/rails_i18nterface/ender.min.js +45 -0
  9. data/app/assets/stylesheets/rails_i18nterface/application.css +450 -0
  10. data/app/controllers/rails_i18nterface/application_controller.rb +4 -0
  11. data/app/controllers/rails_i18nterface/translate_controller.rb +255 -0
  12. data/app/helpers/rails_i18nterface/application_helper.rb +4 -0
  13. data/app/helpers/rails_i18nterface/translate_helper.rb +74 -0
  14. data/app/models/translation.rb +4 -0
  15. data/app/views/layouts/rails_i18nterface/translate.html.erb +13 -0
  16. data/app/views/rails_i18nterface/translate/_namespaces.html.erb +1 -0
  17. data/app/views/rails_i18nterface/translate/_pagination.html.erb +18 -0
  18. data/app/views/rails_i18nterface/translate/index.html.erb +132 -0
  19. data/config/routes.rb +7 -0
  20. data/db/migrate/20110921112044_create_translations.rb +18 -0
  21. data/lib/rails-i18nterface.rb +8 -0
  22. data/lib/rails-i18nterface/engine.rb +7 -0
  23. data/lib/rails-i18nterface/file.rb +35 -0
  24. data/lib/rails-i18nterface/keys.rb +192 -0
  25. data/lib/rails-i18nterface/log.rb +35 -0
  26. data/lib/rails-i18nterface/storage.rb +29 -0
  27. data/lib/rails-i18nterface/version.rb +3 -0
  28. data/lib/tasks/rails-i18nterface.rake +4 -0
  29. data/spec/controllers/translate_controller_spec.rb +135 -0
  30. data/spec/internal/app/assets/javascripts/application.js +2 -0
  31. data/spec/internal/app/assets/stylesheets/application.css +3 -0
  32. data/spec/internal/app/controllers/application_controller.rb +4 -0
  33. data/spec/internal/app/models/article.rb +11 -0
  34. data/spec/internal/app/views/application/index.html.erb +5 -0
  35. data/spec/internal/app/views/categories/category.erb +1 -0
  36. data/spec/internal/app/views/categories/category.html +1 -0
  37. data/spec/internal/app/views/categories/category.html.erb +1 -0
  38. data/spec/internal/app/views/categories/category.rhtml +5 -0
  39. data/spec/internal/config/database.yml +3 -0
  40. data/spec/internal/config/routes.rb +4 -0
  41. data/spec/internal/db/combustion_test.sqlite +0 -0
  42. data/spec/internal/db/schema.rb +3 -0
  43. data/spec/internal/log/test.log +521 -0
  44. data/spec/internal/public/favicon.ico +0 -0
  45. data/spec/lib/file_spec.rb +53 -0
  46. data/spec/lib/keys_spec.rb +179 -0
  47. data/spec/lib/log_spec.rb +46 -0
  48. data/spec/lib/storage_spec.rb +33 -0
  49. data/spec/requests/search_spec.rb +62 -0
  50. data/spec/spec_helper.rb +37 -0
  51. metadata +200 -0
@@ -0,0 +1,2 @@
1
+ //= require rails_i18nterface/application
2
+ I18n.t('js.alert')
@@ -0,0 +1,3 @@
1
+ /*
2
+ *= require rails_i18nterface/application
3
+ */
@@ -0,0 +1,4 @@
1
+ class ApplicationController < ActionController::Base
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,11 @@
1
+ class Article < ActiveRecord::Base
2
+ def validate
3
+ errors.add_to_base([t(:'article.key1') + "#{t('article.key2')}"])
4
+ I18n.t 'article.key3'
5
+ I18n.t 'article.key3'
6
+ I18n.t :'article.key4'
7
+ I18n.translate :'article.key5'
8
+ 'bla bla t' + "blubba bla" + ' foobar'
9
+ 'bla bla t ' + "blubba bla" + ' foobar'
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ <html>
2
+ <body>
3
+ index
4
+ </body>
5
+ </html>
@@ -0,0 +1 @@
1
+ <%= t(:'category_erb.key1') %>
@@ -0,0 +1 @@
1
+ t(:'category_html.key1')
@@ -0,0 +1 @@
1
+ <%= t(:'category_html_erb.key1') %>
@@ -0,0 +1,5 @@
1
+ <script>
2
+ document.createElement('li');
3
+ </script>
4
+
5
+ <%= t(:'category_rhtml.key1') %>
@@ -0,0 +1,3 @@
1
+ test:
2
+ adapter: sqlite3
3
+ database: db/combustion_test.sqlite
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ root to: "application#index"
3
+ mount RailsI18nterface::Engine => "/translate", :as => "translate_engine"
4
+ end
@@ -0,0 +1,3 @@
1
+ ActiveRecord::Schema.define do
2
+
3
+ end
@@ -0,0 +1,521 @@
1
+ Connecting to database specified by database.yml
2
+  (0.1ms) select sqlite_version(*)
3
+  (176.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
+ Migrating to CreateTranslations (20110921112044)
7
+  (0.0ms) begin transaction
8
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
9
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
10
+  (120.6ms) commit transaction
11
+ Connecting to database specified by database.yml
12
+  (0.1ms) select sqlite_version(*)
13
+  (163.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
+ Migrating to CreateTranslations (20110921112044)
17
+  (0.0ms) begin transaction
18
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
19
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
20
+  (145.9ms) commit transaction
21
+ Connecting to database specified by database.yml
22
+  (0.1ms) select sqlite_version(*)
23
+  (123.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24
+  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
26
+ Migrating to CreateTranslations (20110921112044)
27
+  (0.0ms) begin transaction
28
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
29
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
30
+  (128.8ms) commit transaction
31
+ Connecting to database specified by database.yml
32
+  (0.1ms) select sqlite_version(*)
33
+  (154.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
34
+  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
36
+ Migrating to CreateTranslations (20110921112044)
37
+  (0.0ms) begin transaction
38
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
39
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
40
+  (193.7ms) commit transaction
41
+ Connecting to database specified by database.yml
42
+  (0.1ms) select sqlite_version(*)
43
+  (209.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
44
+  (166.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
46
+ Migrating to CreateTranslations (20110921112044)
47
+  (0.0ms) begin transaction
48
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
49
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
50
+  (137.5ms) commit transaction
51
+ Connecting to database specified by database.yml
52
+  (0.1ms) select sqlite_version(*)
53
+  (176.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
54
+  (166.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
55
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
56
+ Migrating to CreateTranslations (20110921112044)
57
+  (0.0ms) begin transaction
58
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
59
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
60
+  (154.0ms) commit transaction
61
+ Connecting to database specified by database.yml
62
+  (0.1ms) select sqlite_version(*)
63
+  (158.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
64
+  (167.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
66
+ Migrating to CreateTranslations (20110921112044)
67
+  (0.0ms) begin transaction
68
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
69
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
70
+  (145.9ms) commit transaction
71
+ Connecting to database specified by database.yml
72
+  (0.1ms) select sqlite_version(*)
73
+  (188.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
74
+  (134.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
76
+ Migrating to CreateTranslations (20110921112044)
77
+  (0.0ms) begin transaction
78
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
79
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
80
+  (137.0ms) commit transaction
81
+ Connecting to database specified by database.yml
82
+  (0.1ms) select sqlite_version(*)
83
+  (180.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
84
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
85
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
86
+ Migrating to CreateTranslations (20110921112044)
87
+  (0.0ms) begin transaction
88
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
89
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
90
+  (137.5ms) commit transaction
91
+ Connecting to database specified by database.yml
92
+  (0.1ms) select sqlite_version(*)
93
+  (171.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
94
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
96
+ Migrating to CreateTranslations (20110921112044)
97
+  (0.0ms) begin transaction
98
+  (0.5ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
99
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
100
+  (162.0ms) commit transaction
101
+ Connecting to database specified by database.yml
102
+  (0.1ms) select sqlite_version(*)
103
+  (271.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
104
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
105
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
106
+ Migrating to CreateTranslations (20110921112044)
107
+  (0.0ms) begin transaction
108
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
109
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
110
+  (157.7ms) commit transaction
111
+ Connecting to database specified by database.yml
112
+  (0.1ms) select sqlite_version(*)
113
+  (202.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
114
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
115
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
116
+ Migrating to CreateTranslations (20110921112044)
117
+  (0.0ms) begin transaction
118
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
119
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
120
+  (154.3ms) commit transaction
121
+ Connecting to database specified by database.yml
122
+  (0.1ms) select sqlite_version(*)
123
+  (156.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
124
+  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
125
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
126
+ Migrating to CreateTranslations (20110921112044)
127
+  (0.0ms) begin transaction
128
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
129
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
130
+  (154.3ms) commit transaction
131
+ Connecting to database specified by database.yml
132
+  (0.1ms) select sqlite_version(*)
133
+  (162.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
134
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
135
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
136
+ Migrating to CreateTranslations (20110921112044)
137
+  (0.0ms) begin transaction
138
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
139
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
140
+  (129.1ms) commit transaction
141
+ Connecting to database specified by database.yml
142
+  (0.1ms) select sqlite_version(*)
143
+  (169.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
144
+  (160.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
145
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
146
+ Migrating to CreateTranslations (20110921112044)
147
+  (0.0ms) begin transaction
148
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
149
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
150
+  (137.6ms) commit transaction
151
+ Connecting to database specified by database.yml
152
+  (0.1ms) select sqlite_version(*)
153
+  (153.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
154
+  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
+ Connecting to database specified by database.yml
156
+  (0.1ms) select sqlite_version(*)
157
+  (174.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
158
+  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
159
+ Connecting to database specified by database.yml
160
+  (0.1ms) select sqlite_version(*)
161
+  (177.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
162
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
163
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
164
+ Migrating to CreateTranslations (20110921112044)
165
+  (0.0ms) begin transaction
166
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
167
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
168
+  (177.7ms) commit transaction
169
+ Connecting to database specified by database.yml
170
+  (0.6ms) select sqlite_version(*)
171
+  (145.0ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
172
+  (150.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
173
+  (159.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
175
+ Migrating to CreateTranslations (20110921112044)
176
+  (0.0ms) begin transaction
177
+  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
178
+ SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
179
+  (0.1ms) rollback transaction
180
+ Connecting to database specified by database.yml
181
+  (0.6ms) select sqlite_version(*)
182
+  (164.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
183
+  (158.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
184
+  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
185
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
186
+ Migrating to CreateTranslations (20110921112044)
187
+  (0.0ms) begin transaction
188
+  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
189
+ SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
+  (0.0ms) rollback transaction
191
+ Connecting to database specified by database.yml
192
+  (0.9ms) select sqlite_version(*)
193
+  (157.8ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
194
+  (191.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
195
+  (167.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
196
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
197
+ Migrating to CreateTranslations (20110921112044)
198
+  (0.0ms) begin transaction
199
+  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
200
+ SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
201
+  (0.1ms) rollback transaction
202
+ Connecting to database specified by database.yml
203
+  (0.1ms) select sqlite_version(*)
204
+  (200.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
205
+  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
206
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
207
+ Migrating to CreateTranslations (20110921112044)
208
+  (0.0ms) begin transaction
209
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
210
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
211
+  (168.3ms) commit transaction
212
+ Connecting to database specified by database.yml
213
+  (0.1ms) select sqlite_version(*)
214
+  (169.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
215
+  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
216
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
217
+ Migrating to CreateTranslations (20110921112044)
218
+  (0.0ms) begin transaction
219
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
220
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
221
+  (137.5ms) commit transaction
222
+ Connecting to database specified by database.yml
223
+  (0.1ms) select sqlite_version(*)
224
+  (151.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
225
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
226
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
227
+ Migrating to CreateTranslations (20110921112044)
228
+  (0.0ms) begin transaction
229
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
230
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
231
+  (161.7ms) commit transaction
232
+ Connecting to database specified by database.yml
233
+  (0.1ms) select sqlite_version(*)
234
+  (160.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
235
+  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
236
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
237
+ Migrating to CreateTranslations (20110921112044)
238
+  (0.0ms) begin transaction
239
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
240
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
241
+  (162.5ms) commit transaction
242
+ Connecting to database specified by database.yml
243
+  (0.1ms) select sqlite_version(*)
244
+  (182.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
245
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
246
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
247
+ Migrating to CreateTranslations (20110921112044)
248
+  (0.0ms) begin transaction
249
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
250
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
251
+  (145.8ms) commit transaction
252
+ Connecting to database specified by database.yml
253
+  (0.1ms) select sqlite_version(*)
254
+  (128.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
255
+  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
256
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
257
+ Migrating to CreateTranslations (20110921112044)
258
+  (0.0ms) begin transaction
259
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
260
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
261
+  (120.8ms) commit transaction
262
+ Connecting to database specified by database.yml
263
+  (0.1ms) select sqlite_version(*)
264
+  (143.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
265
+  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
266
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
267
+ Migrating to CreateTranslations (20110921112044)
268
+  (0.0ms) begin transaction
269
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
270
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
271
+  (104.2ms) commit transaction
272
+ Connecting to database specified by database.yml
273
+  (0.1ms) select sqlite_version(*)
274
+  (146.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
275
+  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
276
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
277
+ Migrating to CreateTranslations (20110921112044)
278
+  (0.0ms) begin transaction
279
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
280
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
281
+  (112.6ms) commit transaction
282
+ Connecting to database specified by database.yml
283
+  (0.1ms) select sqlite_version(*)
284
+  (199.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
285
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
286
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
287
+ Migrating to CreateTranslations (20110921112044)
288
+  (0.0ms) begin transaction
289
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
290
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
291
+  (145.8ms) commit transaction
292
+ Connecting to database specified by database.yml
293
+  (0.1ms) select sqlite_version(*)
294
+  (164.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
295
+  (154.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
296
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
297
+ Migrating to CreateTranslations (20110921112044)
298
+  (0.0ms) begin transaction
299
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
300
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
301
+  (152.7ms) commit transaction
302
+ Connecting to database specified by database.yml
303
+  (0.1ms) select sqlite_version(*)
304
+  (168.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
305
+  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
306
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
307
+ Migrating to CreateTranslations (20110921112044)
308
+  (0.0ms) begin transaction
309
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
310
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
311
+  (168.5ms) commit transaction
312
+ Connecting to database specified by database.yml
313
+  (0.1ms) select sqlite_version(*)
314
+  (147.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
315
+  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
316
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
317
+ Migrating to CreateTranslations (20110921112044)
318
+  (0.0ms) begin transaction
319
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
320
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
321
+  (160.9ms) commit transaction
322
+ Connecting to database specified by database.yml
323
+  (0.1ms) select sqlite_version(*)
324
+  (166.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
325
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
326
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
327
+ Migrating to CreateTranslations (20110921112044)
328
+  (0.0ms) begin transaction
329
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
330
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
331
+  (130.5ms) commit transaction
332
+ Connecting to database specified by database.yml
333
+  (0.1ms) select sqlite_version(*)
334
+  (146.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
335
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
336
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
337
+ Migrating to CreateTranslations (20110921112044)
338
+  (0.0ms) begin transaction
339
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
340
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
341
+  (161.0ms) commit transaction
342
+ Connecting to database specified by database.yml
343
+  (0.1ms) select sqlite_version(*)
344
+  (147.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
345
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
346
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
347
+ Migrating to CreateTranslations (20110921112044)
348
+  (0.0ms) begin transaction
349
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
350
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
351
+  (137.4ms) commit transaction
352
+ Connecting to database specified by database.yml
353
+  (0.1ms) select sqlite_version(*)
354
+  (179.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
355
+  (143.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
357
+ Migrating to CreateTranslations (20110921112044)
358
+  (0.0ms) begin transaction
359
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
360
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
361
+  (144.3ms) commit transaction
362
+ Connecting to database specified by database.yml
363
+  (0.1ms) select sqlite_version(*)
364
+  (166.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
365
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
366
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
367
+ Migrating to CreateTranslations (20110921112044)
368
+  (0.0ms) begin transaction
369
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
370
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
371
+  (160.1ms) commit transaction
372
+ Connecting to database specified by database.yml
373
+  (0.1ms) select sqlite_version(*)
374
+  (173.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
375
+  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
376
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
377
+ Migrating to CreateTranslations (20110921112044)
378
+  (0.0ms) begin transaction
379
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
380
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
381
+  (144.6ms) commit transaction
382
+ Connecting to database specified by database.yml
383
+  (0.1ms) select sqlite_version(*)
384
+  (161.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
385
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
386
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
387
+ Migrating to CreateTranslations (20110921112044)
388
+  (0.0ms) begin transaction
389
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
390
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
391
+  (120.5ms) commit transaction
392
+ Connecting to database specified by database.yml
393
+  (0.1ms) select sqlite_version(*)
394
+  (194.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
395
+  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
397
+ Migrating to CreateTranslations (20110921112044)
398
+  (0.0ms) begin transaction
399
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
400
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
401
+  (145.7ms) commit transaction
402
+ Connecting to database specified by database.yml
403
+  (0.1ms) select sqlite_version(*)
404
+  (160.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
405
+  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
406
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
407
+ Migrating to CreateTranslations (20110921112044)
408
+  (0.0ms) begin transaction
409
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
410
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
411
+  (179.1ms) commit transaction
412
+ Connecting to database specified by database.yml
413
+  (0.1ms) select sqlite_version(*)
414
+  (164.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
415
+  (141.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
416
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
417
+ Migrating to CreateTranslations (20110921112044)
418
+  (0.0ms) begin transaction
419
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
420
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
421
+  (162.4ms) commit transaction
422
+ Connecting to database specified by database.yml
423
+  (0.1ms) select sqlite_version(*)
424
+  (219.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
425
+  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
426
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
427
+ Migrating to CreateTranslations (20110921112044)
428
+  (0.0ms) begin transaction
429
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
430
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
431
+  (154.0ms) commit transaction
432
+ Connecting to database specified by database.yml
433
+  (0.1ms) select sqlite_version(*)
434
+  (166.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
435
+  (160.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
437
+ Migrating to CreateTranslations (20110921112044)
438
+  (0.0ms) begin transaction
439
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
440
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
441
+  (162.5ms) commit transaction
442
+ Connecting to database specified by database.yml
443
+  (0.1ms) select sqlite_version(*)
444
+  (191.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
445
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
446
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
447
+ Migrating to CreateTranslations (20110921112044)
448
+  (0.0ms) begin transaction
449
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
450
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
451
+  (154.1ms) commit transaction
452
+ Connecting to database specified by database.yml
453
+  (0.1ms) select sqlite_version(*)
454
+  (159.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
455
+  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
456
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
457
+ Migrating to CreateTranslations (20110921112044)
458
+  (0.0ms) begin transaction
459
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
460
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
461
+  (204.2ms) commit transaction
462
+ Connecting to database specified by database.yml
463
+  (0.1ms) select sqlite_version(*)
464
+  (165.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
465
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
466
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
467
+ Migrating to CreateTranslations (20110921112044)
468
+  (0.0ms) begin transaction
469
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
470
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
471
+  (143.0ms) commit transaction
472
+ Connecting to database specified by database.yml
473
+  (0.1ms) select sqlite_version(*)
474
+  (133.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
475
+  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
476
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
477
+ Migrating to CreateTranslations (20110921112044)
478
+  (0.0ms) begin transaction
479
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
480
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
481
+  (197.4ms) commit transaction
482
+ Connecting to database specified by database.yml
483
+  (0.1ms) select sqlite_version(*)
484
+  (130.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
485
+  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
486
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
487
+ Migrating to CreateTranslations (20110921112044)
488
+  (0.0ms) begin transaction
489
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
490
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
491
+  (137.5ms) commit transaction
492
+ Connecting to database specified by database.yml
493
+  (0.1ms) select sqlite_version(*)
494
+  (137.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
495
+  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
496
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
497
+ Migrating to CreateTranslations (20110921112044)
498
+  (0.0ms) begin transaction
499
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
500
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
501
+  (145.9ms) commit transaction
502
+ Connecting to database specified by database.yml
503
+  (0.1ms) select sqlite_version(*)
504
+  (196.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
505
+  (182.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
507
+ Migrating to CreateTranslations (20110921112044)
508
+  (0.0ms) begin transaction
509
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
510
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
511
+  (145.8ms) commit transaction
512
+ Connecting to database specified by database.yml
513
+  (0.1ms) select sqlite_version(*)
514
+  (213.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
515
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
516
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
517
+ Migrating to CreateTranslations (20110921112044)
518
+  (0.0ms) begin transaction
519
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
520
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
521
+  (151.3ms) commit transaction