r18n-rails 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
data/lib/r18n-rails.rb CHANGED
@@ -23,6 +23,7 @@ require 'r18n-core/translated'
23
23
  require 'r18n-rails-api'
24
24
 
25
25
  dir = Pathname(__FILE__).dirname.expand_path + 'r18n-rails'
26
+ require dir + 'mixin'
26
27
  require dir + 'helpers'
27
28
  require dir + 'controller'
28
29
 
@@ -32,6 +33,6 @@ R18n::Filters.add(::R18n::Untranslated, :untranslated_html) do
32
33
  "#{translated}<span style='color: red'>#{untranslated}</span>"
33
34
  end
34
35
 
35
- ActionController::Base.helper(R18n::Rails::Helpers)
36
+ ActionController::Base.helper(R18n::Rails::Mixin)
36
37
  ActionController::Base.send(:include, R18n::Rails::Controller)
37
38
  ActionController::Base.send(:before_filter, :set_r18n)
@@ -22,16 +22,14 @@ require 'r18n-rails-api'
22
22
  module R18n
23
23
  module Rails
24
24
  module Controller
25
- private
25
+ include Mixin
26
26
 
27
- # Return current R18n instance.
28
- def r18n
29
- R18n.get
30
- end
27
+ private
31
28
 
32
29
  # Auto detect user locales and change backend.
33
30
  def set_r18n
34
31
  R18n.set do
32
+ R18n::I18n.default = ::I18n.default_locale.to_s
35
33
  locales = R18n::I18n.parse_http(request.env['HTTP_ACCEPT_LANGUAGE'])
36
34
 
37
35
  if params[:locale]
@@ -0,0 +1,41 @@
1
+ =begin
2
+ R18n methods for Rails helpers and controllers.
3
+
4
+ Copyright (C) 2009 Andrey “A.I.” Sitnik <andrey@sitnik.ru>
5
+
6
+ This program is free software: you can redistribute it and/or modify
7
+ it under the terms of the GNU Lesser General Public License as published by
8
+ the Free Software Foundation, either version 3 of the License, or
9
+ (at your option) any later version.
10
+
11
+ This program is distributed in the hope that it will be useful,
12
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ GNU Lesser General Public License for more details.
15
+
16
+ You should have received a copy of the GNU Lesser General Public License
17
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+ =end
19
+
20
+ module R18n
21
+ module Rails
22
+ module Mixin
23
+ # Return current R18n instance.
24
+ def r18n
25
+ R18n.get
26
+ end
27
+
28
+ # Extend +t+ helper to use also R18n syntax.
29
+ #
30
+ # t 'user.name' # Rails I18n style
31
+ # t.user.name # R18n style
32
+ def t(*params)
33
+ if params.empty?
34
+ r18n.t
35
+ else
36
+ super(*params)
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
@@ -20,4 +20,9 @@ class TestController < ApplicationController
20
20
  def untranslated
21
21
  render :text => "#{R18n.get.user.not.exists}"
22
22
  end
23
+
24
+ def controller
25
+ render :text => "#{t('user.name')}" + "#{t.user.name}" +
26
+ "#{r18n.t.user.name}"
27
+ end
23
28
  end
@@ -6,4 +6,6 @@ Rails::Initializer.run do |config|
6
6
  config.time_zone = 'UTC'
7
7
 
8
8
  config.gem 'r18n-rails', :lib => Rails.root + '../../lib/r18n-rails'
9
+
10
+ config.i18n.default_locale = :ru
9
11
  end
@@ -891,3 +891,2064 @@ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
891
891
  
892
892
  SQL (0.1ms) SELECT version FROM "schema_migrations"
893
893
  SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
894
+
895
+
896
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
897
+
898
+
899
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
900
+ Parameters: {"locale"=>"ru"}
901
+
902
+
903
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
904
+
905
+
906
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
907
+
908
+
909
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
910
+
911
+
912
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
913
+
914
+
915
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
916
+
917
+
918
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
919
+ SQL (0.3ms) select sqlite_version(*)
920
+ SQL (0.4ms)  SELECT name
921
+ FROM sqlite_master
922
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
923
+ 
924
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
925
+ SQL (0.2ms)  SELECT name
926
+ FROM sqlite_master
927
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
928
+ 
929
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
930
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
931
+ SQL (0.3ms)  SELECT name
932
+ FROM sqlite_master
933
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
934
+ 
935
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
936
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
937
+
938
+
939
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:27) [GET]
940
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
941
+
942
+
943
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
944
+ Parameters: {"locale"=>"ru"}
945
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
946
+
947
+
948
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
949
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
950
+
951
+
952
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
953
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
954
+
955
+
956
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
957
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
958
+
959
+
960
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
961
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
962
+
963
+
964
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
965
+ Rendering test/helpers
966
+ Completed in 47ms (View: 38, DB: 0) | 200 OK [http://test.host/helpers]
967
+
968
+
969
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
970
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
971
+ SQL (0.3ms) select sqlite_version(*)
972
+ SQL (0.4ms)  SELECT name
973
+ FROM sqlite_master
974
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
975
+ 
976
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
977
+ SQL (0.3ms)  SELECT name
978
+ FROM sqlite_master
979
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
980
+ 
981
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
982
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
983
+ SQL (0.2ms)  SELECT name
984
+ FROM sqlite_master
985
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
986
+ 
987
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
988
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
989
+
990
+
991
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
992
+
993
+
994
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
995
+ Parameters: {"locale"=>"ru"}
996
+
997
+
998
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
999
+
1000
+
1001
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
1002
+
1003
+
1004
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
1005
+
1006
+
1007
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
1008
+
1009
+
1010
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
1011
+
1012
+
1013
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
1014
+ SQL (0.3ms) select sqlite_version(*)
1015
+ SQL (0.4ms)  SELECT name
1016
+ FROM sqlite_master
1017
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1018
+ 
1019
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1020
+ SQL (0.2ms)  SELECT name
1021
+ FROM sqlite_master
1022
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1023
+ 
1024
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1025
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1026
+ SQL (0.2ms)  SELECT name
1027
+ FROM sqlite_master
1028
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1029
+ 
1030
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1031
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1032
+
1033
+
1034
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1035
+
1036
+
1037
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1038
+ Parameters: {"locale"=>"ru"}
1039
+
1040
+
1041
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1042
+
1043
+
1044
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1045
+
1046
+
1047
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1048
+
1049
+
1050
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1051
+
1052
+
1053
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1054
+
1055
+
1056
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
1057
+ SQL (0.3ms) select sqlite_version(*)
1058
+ SQL (0.4ms)  SELECT name
1059
+ FROM sqlite_master
1060
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1061
+ 
1062
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1063
+ SQL (0.2ms)  SELECT name
1064
+ FROM sqlite_master
1065
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1066
+ 
1067
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1068
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1069
+ SQL (0.2ms)  SELECT name
1070
+ FROM sqlite_master
1071
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1072
+ 
1073
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1074
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1075
+
1076
+
1077
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1078
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1079
+
1080
+
1081
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1082
+ Parameters: {"locale"=>"ru"}
1083
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1084
+
1085
+
1086
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1087
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1088
+
1089
+
1090
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1091
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1092
+
1093
+
1094
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1095
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
1096
+
1097
+
1098
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1099
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1100
+
1101
+
1102
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1103
+ Rendering test/helpers
1104
+ Completed in 18ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
1105
+
1106
+
1107
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
1108
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1109
+ SQL (0.3ms) select sqlite_version(*)
1110
+ SQL (0.4ms)  SELECT name
1111
+ FROM sqlite_master
1112
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1113
+ 
1114
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1115
+ SQL (0.3ms)  SELECT name
1116
+ FROM sqlite_master
1117
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1118
+ 
1119
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1120
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1121
+ SQL (0.2ms)  SELECT name
1122
+ FROM sqlite_master
1123
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1124
+ 
1125
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1126
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1127
+
1128
+
1129
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1130
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1131
+
1132
+
1133
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1134
+ Parameters: {"locale"=>"ru"}
1135
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1136
+
1137
+
1138
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1139
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1140
+
1141
+
1142
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1143
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1144
+
1145
+
1146
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1147
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
1148
+
1149
+
1150
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1151
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1152
+
1153
+
1154
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1155
+ Rendering test/helpers
1156
+ Completed in 17ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
1157
+
1158
+
1159
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
1160
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1161
+ SQL (0.3ms) select sqlite_version(*)
1162
+ SQL (0.4ms)  SELECT name
1163
+ FROM sqlite_master
1164
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1165
+ 
1166
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1167
+ SQL (0.2ms)  SELECT name
1168
+ FROM sqlite_master
1169
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1170
+ 
1171
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1172
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1173
+ SQL (0.2ms)  SELECT name
1174
+ FROM sqlite_master
1175
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1176
+ 
1177
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1178
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1179
+
1180
+
1181
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1182
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1183
+
1184
+
1185
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1186
+ Parameters: {"locale"=>"ru"}
1187
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1188
+
1189
+
1190
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1191
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1192
+
1193
+
1194
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1195
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1196
+
1197
+
1198
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1199
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
1200
+
1201
+
1202
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1203
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1204
+
1205
+
1206
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1207
+ Rendering test/helpers
1208
+ Completed in 18ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
1209
+
1210
+
1211
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
1212
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1213
+ SQL (0.3ms) select sqlite_version(*)
1214
+ SQL (0.4ms)  SELECT name
1215
+ FROM sqlite_master
1216
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1217
+ 
1218
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1219
+ SQL (0.3ms)  SELECT name
1220
+ FROM sqlite_master
1221
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1222
+ 
1223
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1224
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1225
+ SQL (0.2ms)  SELECT name
1226
+ FROM sqlite_master
1227
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1228
+ 
1229
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1230
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1231
+
1232
+
1233
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1234
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1235
+
1236
+
1237
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1238
+ Parameters: {"locale"=>"ru"}
1239
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1240
+
1241
+
1242
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1243
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1244
+
1245
+
1246
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1247
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1248
+
1249
+
1250
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1251
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
1252
+
1253
+
1254
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1255
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1256
+
1257
+
1258
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1259
+ Rendering test/helpers
1260
+ Completed in 18ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
1261
+
1262
+
1263
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
1264
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1265
+ SQL (0.3ms) select sqlite_version(*)
1266
+ SQL (0.4ms)  SELECT name
1267
+ FROM sqlite_master
1268
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1269
+ 
1270
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1271
+ SQL (0.3ms)  SELECT name
1272
+ FROM sqlite_master
1273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1274
+ 
1275
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1276
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1277
+ SQL (0.2ms)  SELECT name
1278
+ FROM sqlite_master
1279
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1280
+ 
1281
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1282
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1283
+
1284
+
1285
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1286
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1287
+
1288
+
1289
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1290
+ Parameters: {"locale"=>"ru"}
1291
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1292
+
1293
+
1294
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1295
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1296
+
1297
+
1298
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1299
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1300
+
1301
+
1302
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1303
+ Parameters: {"locale"=>"en"}
1304
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1305
+
1306
+
1307
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1308
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1309
+
1310
+
1311
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1312
+ Parameters: {"locale"=>"en"}
1313
+ Rendering test/helpers
1314
+ Completed in 19ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
1315
+
1316
+
1317
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
1318
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1319
+ SQL (0.3ms) select sqlite_version(*)
1320
+ SQL (0.4ms)  SELECT name
1321
+ FROM sqlite_master
1322
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1323
+ 
1324
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1325
+ SQL (0.4ms)  SELECT name
1326
+ FROM sqlite_master
1327
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1328
+ 
1329
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1330
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1331
+ SQL (0.2ms)  SELECT name
1332
+ FROM sqlite_master
1333
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1334
+ 
1335
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1336
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1337
+
1338
+
1339
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1340
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1341
+
1342
+
1343
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1344
+ Parameters: {"locale"=>"ru"}
1345
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1346
+
1347
+
1348
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1349
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1350
+
1351
+
1352
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1353
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1354
+
1355
+
1356
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1357
+ Parameters: {"locale"=>"en"}
1358
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1359
+
1360
+
1361
+ Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1362
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1363
+
1364
+
1365
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1366
+ Parameters: {"locale"=>"en"}
1367
+ Rendering test/helpers
1368
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1369
+
1370
+
1371
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
1372
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1373
+ SQL (0.3ms) select sqlite_version(*)
1374
+ SQL (0.4ms)  SELECT name
1375
+ FROM sqlite_master
1376
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1377
+ 
1378
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1379
+ SQL (0.2ms)  SELECT name
1380
+ FROM sqlite_master
1381
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1382
+ 
1383
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1384
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1385
+ SQL (0.2ms)  SELECT name
1386
+ FROM sqlite_master
1387
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1388
+ 
1389
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1390
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1391
+
1392
+
1393
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:23) [GET]
1394
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1395
+
1396
+
1397
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
1398
+ Parameters: {"locale"=>"ru"}
1399
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1400
+
1401
+
1402
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
1403
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1404
+
1405
+
1406
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
1407
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1408
+
1409
+
1410
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
1411
+ Parameters: {"locale"=>"en"}
1412
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1413
+
1414
+
1415
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
1416
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1417
+
1418
+
1419
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
1420
+ Parameters: {"locale"=>"en"}
1421
+ Rendering test/helpers
1422
+ Completed in 37ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
1423
+
1424
+
1425
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
1426
+ SQL (0.3ms) select sqlite_version(*)
1427
+ SQL (0.4ms)  SELECT name
1428
+ FROM sqlite_master
1429
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1430
+ 
1431
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1432
+ SQL (0.2ms)  SELECT name
1433
+ FROM sqlite_master
1434
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1435
+ 
1436
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1437
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1438
+ SQL (0.3ms)  SELECT name
1439
+ FROM sqlite_master
1440
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1441
+ 
1442
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1443
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1444
+
1445
+
1446
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1447
+ Completed in 19ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1448
+
1449
+
1450
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1451
+ Parameters: {"locale"=>"ru"}
1452
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1453
+
1454
+
1455
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1456
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1457
+
1458
+
1459
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1460
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1461
+
1462
+
1463
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1464
+ Parameters: {"locale"=>"en"}
1465
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1466
+
1467
+
1468
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1469
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1470
+
1471
+
1472
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1473
+ Parameters: {"locale"=>"en"}
1474
+ Rendering test/helpers
1475
+ Completed in 36ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
1476
+
1477
+
1478
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
1479
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1480
+ SQL (0.3ms) select sqlite_version(*)
1481
+ SQL (0.4ms)  SELECT name
1482
+ FROM sqlite_master
1483
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1484
+ 
1485
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1486
+ SQL (0.2ms)  SELECT name
1487
+ FROM sqlite_master
1488
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1489
+ 
1490
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1491
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1492
+ SQL (0.2ms)  SELECT name
1493
+ FROM sqlite_master
1494
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1495
+ 
1496
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1497
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1498
+
1499
+
1500
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
1501
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1502
+
1503
+
1504
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
1505
+ Parameters: {"locale"=>"ru"}
1506
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1507
+
1508
+
1509
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
1510
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1511
+
1512
+
1513
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
1514
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1515
+
1516
+
1517
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
1518
+ Parameters: {"locale"=>"en"}
1519
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1520
+
1521
+
1522
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
1523
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1524
+
1525
+
1526
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
1527
+ Parameters: {"locale"=>"en"}
1528
+ Rendering test/helpers
1529
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1530
+
1531
+
1532
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
1533
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1534
+ SQL (0.3ms) select sqlite_version(*)
1535
+ SQL (0.4ms)  SELECT name
1536
+ FROM sqlite_master
1537
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1538
+ 
1539
+ SQL (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1540
+ SQL (0.2ms)  SELECT name
1541
+ FROM sqlite_master
1542
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1543
+ 
1544
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1545
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1546
+ SQL (0.2ms)  SELECT name
1547
+ FROM sqlite_master
1548
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1549
+ 
1550
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1551
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1552
+
1553
+
1554
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
1555
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1556
+
1557
+
1558
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
1559
+ Parameters: {"locale"=>"ru"}
1560
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1561
+
1562
+
1563
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
1564
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1565
+
1566
+
1567
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
1568
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1569
+
1570
+
1571
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
1572
+ Parameters: {"locale"=>"en"}
1573
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1574
+
1575
+
1576
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
1577
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1578
+
1579
+
1580
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
1581
+ Parameters: {"locale"=>"en"}
1582
+ Rendering test/helpers
1583
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1584
+
1585
+
1586
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
1587
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1588
+ SQL (0.4ms) select sqlite_version(*)
1589
+ SQL (0.4ms)  SELECT name
1590
+ FROM sqlite_master
1591
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1592
+ 
1593
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1594
+ SQL (0.2ms)  SELECT name
1595
+ FROM sqlite_master
1596
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1597
+ 
1598
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1599
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1600
+ SQL (0.3ms)  SELECT name
1601
+ FROM sqlite_master
1602
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1603
+ 
1604
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1605
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1606
+
1607
+
1608
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1609
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1610
+
1611
+
1612
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1613
+ Parameters: {"locale"=>"ru"}
1614
+ Completed in 17ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1615
+
1616
+
1617
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1618
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1619
+
1620
+
1621
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1622
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1623
+
1624
+
1625
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1626
+ Parameters: {"locale"=>"en"}
1627
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1628
+
1629
+
1630
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1631
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1632
+
1633
+
1634
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1635
+ Parameters: {"locale"=>"en"}
1636
+ Rendering test/helpers
1637
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1638
+
1639
+
1640
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
1641
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1642
+ SQL (0.3ms) select sqlite_version(*)
1643
+ SQL (0.4ms)  SELECT name
1644
+ FROM sqlite_master
1645
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1646
+ 
1647
+ SQL (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1648
+ SQL (0.2ms)  SELECT name
1649
+ FROM sqlite_master
1650
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1651
+ 
1652
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1653
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1654
+ SQL (0.2ms)  SELECT name
1655
+ FROM sqlite_master
1656
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1657
+ 
1658
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1659
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1660
+
1661
+
1662
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1663
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1664
+
1665
+
1666
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1667
+ Parameters: {"locale"=>"ru"}
1668
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1669
+
1670
+
1671
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1672
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1673
+
1674
+
1675
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1676
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1677
+
1678
+
1679
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1680
+ Parameters: {"locale"=>"en"}
1681
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1682
+
1683
+
1684
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1685
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1686
+
1687
+
1688
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1689
+ Parameters: {"locale"=>"en"}
1690
+ Rendering test/helpers
1691
+ Completed in 20ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
1692
+
1693
+
1694
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
1695
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1696
+ SQL (0.3ms) select sqlite_version(*)
1697
+ SQL (0.3ms)  SELECT name
1698
+ FROM sqlite_master
1699
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1700
+ 
1701
+ SQL (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1702
+ SQL (0.2ms)  SELECT name
1703
+ FROM sqlite_master
1704
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1705
+ 
1706
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1707
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1708
+ SQL (0.2ms)  SELECT name
1709
+ FROM sqlite_master
1710
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1711
+ 
1712
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1713
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1714
+
1715
+
1716
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1717
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1718
+
1719
+
1720
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1721
+ Parameters: {"locale"=>"ru"}
1722
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1723
+
1724
+
1725
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1726
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1727
+
1728
+
1729
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1730
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1731
+
1732
+
1733
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1734
+ Parameters: {"locale"=>"en"}
1735
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1736
+
1737
+
1738
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1739
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1740
+
1741
+
1742
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1743
+ Parameters: {"locale"=>"en"}
1744
+ Rendering test/helpers
1745
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1746
+
1747
+
1748
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
1749
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1750
+ SQL (0.3ms) select sqlite_version(*)
1751
+ SQL (0.4ms)  SELECT name
1752
+ FROM sqlite_master
1753
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1754
+ 
1755
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1756
+ SQL (0.2ms)  SELECT name
1757
+ FROM sqlite_master
1758
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1759
+ 
1760
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1761
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1762
+ SQL (0.2ms)  SELECT name
1763
+ FROM sqlite_master
1764
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1765
+ 
1766
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1767
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1768
+
1769
+
1770
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1771
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1772
+
1773
+
1774
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1775
+ Parameters: {"locale"=>"ru"}
1776
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1777
+
1778
+
1779
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1780
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1781
+
1782
+
1783
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1784
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1785
+
1786
+
1787
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1788
+ Parameters: {"locale"=>"en"}
1789
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1790
+
1791
+
1792
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1793
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1794
+
1795
+
1796
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1797
+ Parameters: {"locale"=>"en"}
1798
+ Rendering test/helpers
1799
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1800
+
1801
+
1802
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
1803
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1804
+ SQL (0.3ms) select sqlite_version(*)
1805
+ SQL (0.4ms)  SELECT name
1806
+ FROM sqlite_master
1807
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1808
+ 
1809
+ SQL (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1810
+ SQL (0.2ms)  SELECT name
1811
+ FROM sqlite_master
1812
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1813
+ 
1814
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1815
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1816
+ SQL (0.2ms)  SELECT name
1817
+ FROM sqlite_master
1818
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1819
+ 
1820
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1821
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1822
+
1823
+
1824
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1825
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1826
+
1827
+
1828
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1829
+ Parameters: {"locale"=>"ru"}
1830
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1831
+
1832
+
1833
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1834
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1835
+
1836
+
1837
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1838
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1839
+
1840
+
1841
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1842
+ Parameters: {"locale"=>"en"}
1843
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1844
+
1845
+
1846
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1847
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1848
+
1849
+
1850
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1851
+ Parameters: {"locale"=>"en"}
1852
+ Rendering test/helpers
1853
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1854
+
1855
+
1856
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
1857
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1858
+ SQL (0.3ms) select sqlite_version(*)
1859
+ SQL (0.4ms)  SELECT name
1860
+ FROM sqlite_master
1861
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1862
+ 
1863
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1864
+ SQL (0.2ms)  SELECT name
1865
+ FROM sqlite_master
1866
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1867
+ 
1868
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1869
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1870
+ SQL (0.2ms)  SELECT name
1871
+ FROM sqlite_master
1872
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1873
+ 
1874
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1875
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1876
+
1877
+
1878
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1879
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1880
+
1881
+
1882
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1883
+ Parameters: {"locale"=>"ru"}
1884
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
1885
+
1886
+
1887
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1888
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1889
+
1890
+
1891
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1892
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1893
+
1894
+
1895
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1896
+ Parameters: {"locale"=>"en"}
1897
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
1898
+
1899
+
1900
+ Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1901
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1902
+
1903
+
1904
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1905
+ Parameters: {"locale"=>"en"}
1906
+ Rendering test/helpers
1907
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
1908
+
1909
+
1910
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
1911
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1912
+ SQL (0.3ms) select sqlite_version(*)
1913
+ SQL (0.4ms)  SELECT name
1914
+ FROM sqlite_master
1915
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1916
+ 
1917
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1918
+ SQL (0.2ms)  SELECT name
1919
+ FROM sqlite_master
1920
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1921
+ 
1922
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1923
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1924
+ SQL (0.3ms)  SELECT name
1925
+ FROM sqlite_master
1926
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1927
+ 
1928
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1929
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1930
+
1931
+
1932
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
1933
+ Completed in 24ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1934
+
1935
+
1936
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
1937
+ Parameters: {"locale"=>"ru"}
1938
+
1939
+
1940
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
1941
+
1942
+
1943
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
1944
+
1945
+
1946
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
1947
+ Parameters: {"locale"=>"en"}
1948
+
1949
+
1950
+ Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
1951
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
1952
+
1953
+
1954
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
1955
+ Parameters: {"locale"=>"en"}
1956
+
1957
+
1958
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:24:15) [GET]
1959
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
1960
+ SQL (0.3ms) select sqlite_version(*)
1961
+ SQL (0.4ms)  SELECT name
1962
+ FROM sqlite_master
1963
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1964
+ 
1965
+ SQL (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
1966
+ SQL (0.3ms)  SELECT name
1967
+ FROM sqlite_master
1968
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1969
+ 
1970
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1971
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1972
+ SQL (0.3ms)  SELECT name
1973
+ FROM sqlite_master
1974
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1975
+ 
1976
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1977
+ SQL (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
1978
+
1979
+
1980
+ Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:24:15) [GET]
1981
+
1982
+
1983
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
1984
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
1985
+
1986
+
1987
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
1988
+ Parameters: {"locale"=>"ru"}
1989
+
1990
+
1991
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
1992
+
1993
+
1994
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
1995
+
1996
+
1997
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
1998
+ Parameters: {"locale"=>"en"}
1999
+
2000
+
2001
+ Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
2002
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2003
+
2004
+
2005
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
2006
+ Parameters: {"locale"=>"en"}
2007
+
2008
+
2009
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
2010
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2011
+ SQL (0.3ms) select sqlite_version(*)
2012
+ SQL (0.4ms)  SELECT name
2013
+ FROM sqlite_master
2014
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2015
+ 
2016
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2017
+ SQL (0.2ms)  SELECT name
2018
+ FROM sqlite_master
2019
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2020
+ 
2021
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2022
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2023
+ SQL (0.3ms)  SELECT name
2024
+ FROM sqlite_master
2025
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2026
+ 
2027
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2028
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2029
+
2030
+
2031
+ Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
2032
+ Completed in 8ms (View: 0, DB: 3) | 200 OK [http://test.host/markdown]
2033
+
2034
+
2035
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2036
+
2037
+
2038
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2039
+ Parameters: {"locale"=>"ru"}
2040
+
2041
+
2042
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2043
+
2044
+
2045
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2046
+
2047
+
2048
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2049
+ Parameters: {"locale"=>"en"}
2050
+
2051
+
2052
+ Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2053
+
2054
+
2055
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2056
+ Parameters: {"locale"=>"en"}
2057
+
2058
+
2059
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2060
+ SQL (0.3ms) select sqlite_version(*)
2061
+ SQL (0.4ms)  SELECT name
2062
+ FROM sqlite_master
2063
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2064
+ 
2065
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2066
+ SQL (0.2ms)  SELECT name
2067
+ FROM sqlite_master
2068
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2069
+ 
2070
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2071
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2072
+ SQL (0.3ms)  SELECT name
2073
+ FROM sqlite_master
2074
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2075
+ 
2076
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2077
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2078
+
2079
+
2080
+ Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
2081
+
2082
+
2083
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2084
+ Completed in 173ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2085
+
2086
+
2087
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2088
+ Parameters: {"locale"=>"ru"}
2089
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2090
+
2091
+
2092
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2093
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2094
+
2095
+
2096
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2097
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2098
+
2099
+
2100
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2101
+ Parameters: {"locale"=>"en"}
2102
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2103
+
2104
+
2105
+ Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2106
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2107
+
2108
+
2109
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2110
+ Parameters: {"locale"=>"en"}
2111
+ Rendering test/helpers
2112
+ Completed in 94ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
2113
+
2114
+
2115
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
2116
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2117
+ SQL (0.3ms) select sqlite_version(*)
2118
+ SQL (0.4ms)  SELECT name
2119
+ FROM sqlite_master
2120
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2121
+ 
2122
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2123
+ SQL (0.2ms)  SELECT name
2124
+ FROM sqlite_master
2125
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2126
+ 
2127
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2128
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2129
+ SQL (0.3ms)  SELECT name
2130
+ FROM sqlite_master
2131
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2132
+ 
2133
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2134
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2135
+
2136
+
2137
+ Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:17) [GET]
2138
+ Completed in 12ms (View: 0, DB: 3) | 200 OK [http://test.host/markdown]
2139
+
2140
+
2141
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2142
+ Completed in 165ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2143
+
2144
+
2145
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2146
+ Parameters: {"locale"=>"ru"}
2147
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2148
+
2149
+
2150
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2151
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2152
+
2153
+
2154
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2155
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2156
+
2157
+
2158
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2159
+ Parameters: {"locale"=>"en"}
2160
+ Completed in 15ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2161
+
2162
+
2163
+ Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2164
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2165
+
2166
+
2167
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2168
+ Parameters: {"locale"=>"en"}
2169
+ Rendering test/helpers
2170
+ Completed in 78ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
2171
+
2172
+
2173
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2174
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2175
+ SQL (0.3ms) select sqlite_version(*)
2176
+ SQL (0.4ms)  SELECT name
2177
+ FROM sqlite_master
2178
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2179
+ 
2180
+ SQL (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2181
+ SQL (0.2ms)  SELECT name
2182
+ FROM sqlite_master
2183
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2184
+ 
2185
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2186
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2187
+ SQL (0.3ms)  SELECT name
2188
+ FROM sqlite_master
2189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2190
+ 
2191
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2192
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2193
+
2194
+
2195
+ Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
2196
+ Completed in 11ms (View: 0, DB: 3) | 200 OK [http://test.host/markdown]
2197
+
2198
+
2199
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2200
+ Completed in 163ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2201
+
2202
+
2203
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2204
+ Parameters: {"locale"=>"ru"}
2205
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2206
+
2207
+
2208
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2209
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2210
+
2211
+
2212
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2213
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2214
+
2215
+
2216
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2217
+ Parameters: {"locale"=>"en"}
2218
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2219
+
2220
+
2221
+ Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2222
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2223
+
2224
+
2225
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2226
+ Parameters: {"locale"=>"en"}
2227
+ Rendering test/helpers
2228
+ Completed in 76ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
2229
+
2230
+
2231
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2232
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2233
+ SQL (0.3ms) select sqlite_version(*)
2234
+ SQL (0.4ms)  SELECT name
2235
+ FROM sqlite_master
2236
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2237
+ 
2238
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2239
+ SQL (0.2ms)  SELECT name
2240
+ FROM sqlite_master
2241
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2242
+ 
2243
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2244
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2245
+ SQL (0.2ms)  SELECT name
2246
+ FROM sqlite_master
2247
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2248
+ 
2249
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2250
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2251
+
2252
+
2253
+ Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
2254
+
2255
+
2256
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:06) [GET]
2257
+ Completed in 80ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2258
+
2259
+
2260
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:06) [GET]
2261
+ Parameters: {"locale"=>"ru"}
2262
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2263
+
2264
+
2265
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:06) [GET]
2266
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2267
+
2268
+
2269
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
2270
+ Completed in 19ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2271
+
2272
+
2273
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
2274
+ Parameters: {"locale"=>"en"}
2275
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2276
+
2277
+
2278
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
2279
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2280
+
2281
+
2282
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
2283
+ Parameters: {"locale"=>"en"}
2284
+ Rendering test/helpers
2285
+ Completed in 44ms (View: 33, DB: 0) | 200 OK [http://test.host/en/helpers]
2286
+
2287
+
2288
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
2289
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2290
+
2291
+
2292
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
2293
+ Parameters: {"locale"=>"en"}
2294
+ SQL (0.3ms) select sqlite_version(*)
2295
+ SQL (0.4ms)  SELECT name
2296
+ FROM sqlite_master
2297
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2298
+ 
2299
+ SQL (17.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2300
+ SQL (0.2ms)  SELECT name
2301
+ FROM sqlite_master
2302
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2303
+ 
2304
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2305
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2306
+ SQL (0.3ms)  SELECT name
2307
+ FROM sqlite_master
2308
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2309
+ 
2310
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2311
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2312
+
2313
+
2314
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2315
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2316
+
2317
+
2318
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2319
+ Parameters: {"locale"=>"ru"}
2320
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2321
+
2322
+
2323
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2324
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2325
+
2326
+
2327
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2328
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2329
+
2330
+
2331
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2332
+ Parameters: {"locale"=>"en"}
2333
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2334
+
2335
+
2336
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2337
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2338
+
2339
+
2340
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2341
+ Parameters: {"locale"=>"en"}
2342
+ Rendering test/helpers
2343
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
2344
+
2345
+
2346
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2347
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2348
+
2349
+
2350
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
2351
+ Parameters: {"locale"=>"en"}
2352
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2353
+ SQL (0.3ms) select sqlite_version(*)
2354
+ SQL (0.4ms)  SELECT name
2355
+ FROM sqlite_master
2356
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2357
+ 
2358
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2359
+ SQL (0.3ms)  SELECT name
2360
+ FROM sqlite_master
2361
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2362
+ 
2363
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2364
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2365
+ SQL (0.3ms)  SELECT name
2366
+ FROM sqlite_master
2367
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2368
+ 
2369
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2370
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2371
+
2372
+
2373
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2374
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2375
+
2376
+
2377
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2378
+ Parameters: {"locale"=>"ru"}
2379
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2380
+
2381
+
2382
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2383
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2384
+
2385
+
2386
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2387
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2388
+
2389
+
2390
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2391
+ Parameters: {"locale"=>"en"}
2392
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2393
+
2394
+
2395
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2396
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2397
+
2398
+
2399
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2400
+ Parameters: {"locale"=>"en"}
2401
+ Rendering test/helpers
2402
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
2403
+
2404
+
2405
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2406
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2407
+
2408
+
2409
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
2410
+ Parameters: {"locale"=>"en"}
2411
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2412
+ SQL (0.3ms) select sqlite_version(*)
2413
+ SQL (0.4ms)  SELECT name
2414
+ FROM sqlite_master
2415
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2416
+ 
2417
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2418
+ SQL (0.2ms)  SELECT name
2419
+ FROM sqlite_master
2420
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2421
+ 
2422
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2423
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2424
+ SQL (0.2ms)  SELECT name
2425
+ FROM sqlite_master
2426
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2427
+ 
2428
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2429
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2430
+
2431
+
2432
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:25) [GET]
2433
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2434
+
2435
+
2436
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:25) [GET]
2437
+ Parameters: {"locale"=>"ru"}
2438
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2439
+
2440
+
2441
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
2442
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2443
+
2444
+
2445
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
2446
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2447
+
2448
+
2449
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
2450
+ Parameters: {"locale"=>"en"}
2451
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2452
+
2453
+
2454
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
2455
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2456
+
2457
+
2458
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
2459
+ Parameters: {"locale"=>"en"}
2460
+ Rendering test/helpers
2461
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
2462
+
2463
+
2464
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
2465
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2466
+
2467
+
2468
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
2469
+ Parameters: {"locale"=>"en"}
2470
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2471
+ SQL (0.4ms) select sqlite_version(*)
2472
+ SQL (0.4ms)  SELECT name
2473
+ FROM sqlite_master
2474
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2475
+ 
2476
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2477
+ SQL (0.2ms)  SELECT name
2478
+ FROM sqlite_master
2479
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2480
+ 
2481
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2482
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2483
+ SQL (0.2ms)  SELECT name
2484
+ FROM sqlite_master
2485
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2486
+ 
2487
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2488
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2489
+
2490
+
2491
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:42) [GET]
2492
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2493
+
2494
+
2495
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:42) [GET]
2496
+ Parameters: {"locale"=>"ru"}
2497
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2498
+
2499
+
2500
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
2501
+ Completed in 34ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2502
+
2503
+
2504
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
2505
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2506
+
2507
+
2508
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
2509
+ Parameters: {"locale"=>"en"}
2510
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2511
+
2512
+
2513
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
2514
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2515
+
2516
+
2517
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
2518
+ Parameters: {"locale"=>"en"}
2519
+ Rendering test/helpers
2520
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
2521
+
2522
+
2523
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
2524
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2525
+
2526
+
2527
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
2528
+ Parameters: {"locale"=>"en"}
2529
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2530
+ SQL (0.3ms) select sqlite_version(*)
2531
+ SQL (0.4ms)  SELECT name
2532
+ FROM sqlite_master
2533
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2534
+ 
2535
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2536
+ SQL (0.2ms)  SELECT name
2537
+ FROM sqlite_master
2538
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2539
+ 
2540
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2541
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2542
+ SQL (0.2ms)  SELECT name
2543
+ FROM sqlite_master
2544
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2545
+ 
2546
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2547
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2548
+
2549
+
2550
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2551
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2552
+
2553
+
2554
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2555
+ Parameters: {"locale"=>"ru"}
2556
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2557
+
2558
+
2559
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2560
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2561
+
2562
+
2563
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2564
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2565
+
2566
+
2567
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2568
+ Parameters: {"locale"=>"en"}
2569
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2570
+
2571
+
2572
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2573
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2574
+
2575
+
2576
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2577
+ Parameters: {"locale"=>"en"}
2578
+ Rendering test/helpers
2579
+
2580
+
2581
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2582
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2583
+
2584
+
2585
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
2586
+ Parameters: {"locale"=>"en"}
2587
+ SQL (0.3ms) select sqlite_version(*)
2588
+ SQL (0.4ms)  SELECT name
2589
+ FROM sqlite_master
2590
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2591
+ 
2592
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2593
+ SQL (0.2ms)  SELECT name
2594
+ FROM sqlite_master
2595
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2596
+ 
2597
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2598
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2599
+ SQL (0.2ms)  SELECT name
2600
+ FROM sqlite_master
2601
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2602
+ 
2603
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2604
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2605
+
2606
+
2607
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2608
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2609
+
2610
+
2611
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2612
+ Parameters: {"locale"=>"ru"}
2613
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2614
+
2615
+
2616
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2617
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2618
+
2619
+
2620
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2621
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2622
+
2623
+
2624
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2625
+ Parameters: {"locale"=>"en"}
2626
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2627
+
2628
+
2629
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2630
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2631
+
2632
+
2633
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2634
+ Parameters: {"locale"=>"en"}
2635
+ Rendering test/helpers
2636
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
2637
+
2638
+
2639
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2640
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2641
+
2642
+
2643
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
2644
+ Parameters: {"locale"=>"en"}
2645
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2646
+ SQL (0.3ms) select sqlite_version(*)
2647
+ SQL (0.5ms)  SELECT name
2648
+ FROM sqlite_master
2649
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2650
+ 
2651
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2652
+ SQL (0.2ms)  SELECT name
2653
+ FROM sqlite_master
2654
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2655
+ 
2656
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2657
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2658
+ SQL (0.3ms)  SELECT name
2659
+ FROM sqlite_master
2660
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2661
+ 
2662
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2663
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2664
+
2665
+
2666
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2667
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2668
+
2669
+
2670
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2671
+ Parameters: {"locale"=>"ru"}
2672
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2673
+
2674
+
2675
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2676
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2677
+
2678
+
2679
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2680
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2681
+
2682
+
2683
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2684
+ Parameters: {"locale"=>"en"}
2685
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2686
+
2687
+
2688
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2689
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2690
+
2691
+
2692
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2693
+ Parameters: {"locale"=>"en"}
2694
+ Rendering test/helpers
2695
+
2696
+
2697
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2698
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2699
+
2700
+
2701
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
2702
+ Parameters: {"locale"=>"en"}
2703
+ SQL (0.3ms) select sqlite_version(*)
2704
+ SQL (0.4ms)  SELECT name
2705
+ FROM sqlite_master
2706
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2707
+ 
2708
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2709
+ SQL (0.2ms)  SELECT name
2710
+ FROM sqlite_master
2711
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2712
+ 
2713
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2714
+ SQL (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2715
+ SQL (0.3ms)  SELECT name
2716
+ FROM sqlite_master
2717
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2718
+ 
2719
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2720
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2721
+
2722
+
2723
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
2724
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2725
+
2726
+
2727
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
2728
+ Parameters: {"locale"=>"ru"}
2729
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2730
+
2731
+
2732
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
2733
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2734
+
2735
+
2736
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
2737
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2738
+
2739
+
2740
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
2741
+ Parameters: {"locale"=>"en"}
2742
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2743
+
2744
+
2745
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
2746
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2747
+
2748
+
2749
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:54:28) [GET]
2750
+ Parameters: {"locale"=>"en"}
2751
+ Rendering test/helpers
2752
+
2753
+
2754
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:54:28) [GET]
2755
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2756
+
2757
+
2758
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:54:28) [GET]
2759
+ Parameters: {"locale"=>"en"}
2760
+ SQL (0.3ms) select sqlite_version(*)
2761
+ SQL (0.4ms)  SELECT name
2762
+ FROM sqlite_master
2763
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2764
+ 
2765
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2766
+ SQL (0.2ms)  SELECT name
2767
+ FROM sqlite_master
2768
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2769
+ 
2770
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2771
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2772
+ SQL (0.2ms)  SELECT name
2773
+ FROM sqlite_master
2774
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2775
+ 
2776
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2777
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2778
+
2779
+
2780
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2781
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2782
+
2783
+
2784
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2785
+ Parameters: {"locale"=>"ru"}
2786
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2787
+
2788
+
2789
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2790
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2791
+
2792
+
2793
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2794
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2795
+
2796
+
2797
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2798
+ Parameters: {"locale"=>"en"}
2799
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2800
+
2801
+
2802
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2803
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2804
+
2805
+
2806
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2807
+ Parameters: {"locale"=>"en"}
2808
+ Rendering test/helpers
2809
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
2810
+
2811
+
2812
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2813
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2814
+
2815
+
2816
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
2817
+ Parameters: {"locale"=>"en"}
2818
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2819
+ SQL (0.3ms) select sqlite_version(*)
2820
+ SQL (0.5ms)  SELECT name
2821
+ FROM sqlite_master
2822
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2823
+ 
2824
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2825
+ SQL (0.2ms)  SELECT name
2826
+ FROM sqlite_master
2827
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2828
+ 
2829
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2830
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2831
+ SQL (0.2ms)  SELECT name
2832
+ FROM sqlite_master
2833
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2834
+ 
2835
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2836
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2837
+
2838
+
2839
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2840
+ Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2841
+
2842
+
2843
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2844
+ Parameters: {"locale"=>"ru"}
2845
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2846
+
2847
+
2848
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2849
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2850
+
2851
+
2852
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2853
+ Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2854
+
2855
+
2856
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2857
+ Parameters: {"locale"=>"en"}
2858
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2859
+
2860
+
2861
+ Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2862
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2863
+
2864
+
2865
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2866
+ Parameters: {"locale"=>"en"}
2867
+ Rendering test/helpers
2868
+ Completed in 25ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
2869
+
2870
+
2871
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2872
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2873
+
2874
+
2875
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
2876
+ Parameters: {"locale"=>"en"}
2877
+ Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2878
+ SQL (0.3ms) select sqlite_version(*)
2879
+ SQL (0.5ms)  SELECT name
2880
+ FROM sqlite_master
2881
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2882
+ 
2883
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2884
+ SQL (0.2ms)  SELECT name
2885
+ FROM sqlite_master
2886
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2887
+ 
2888
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2889
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2890
+ SQL (0.2ms)  SELECT name
2891
+ FROM sqlite_master
2892
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2893
+ 
2894
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2895
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2896
+
2897
+
2898
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2899
+ Completed in 24ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2900
+
2901
+
2902
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2903
+ Parameters: {"locale"=>"ru"}
2904
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2905
+
2906
+
2907
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2908
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2909
+
2910
+
2911
+ Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2912
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2913
+
2914
+
2915
+ Processing TestController#translations (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2916
+ Parameters: {"locale"=>"en"}
2917
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2918
+
2919
+
2920
+ Processing TestController#available (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2921
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2922
+
2923
+
2924
+ Processing TestController#helpers (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2925
+ Parameters: {"locale"=>"en"}
2926
+ Rendering test/helpers
2927
+ Completed in 64ms (View: 54, DB: 0) | 200 OK [http://test.host/en/helpers]
2928
+
2929
+
2930
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2931
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2932
+
2933
+
2934
+ Processing TestController#controller (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
2935
+ Parameters: {"locale"=>"en"}
2936
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2937
+ SQL (0.3ms) select sqlite_version(*)
2938
+ SQL (0.4ms)  SELECT name
2939
+ FROM sqlite_master
2940
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2941
+ 
2942
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
2943
+ SQL (0.2ms)  SELECT name
2944
+ FROM sqlite_master
2945
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2946
+ 
2947
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2948
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2949
+ SQL (0.3ms)  SELECT name
2950
+ FROM sqlite_master
2951
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2952
+ 
2953
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2954
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')