r18n-rails 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/r18n-rails.rb CHANGED
@@ -23,7 +23,6 @@ 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'
27
26
  require dir + 'helpers'
28
27
  require dir + 'controller'
29
28
 
@@ -33,6 +32,6 @@ R18n::Filters.add(::R18n::Untranslated, :untranslated_html) do
33
32
  "#{translated}<span style='color: red'>#{untranslated}</span>"
34
33
  end
35
34
 
36
- ActionController::Base.helper(R18n::Rails::Mixin)
35
+ ActionController::Base.helper(R18n::Rails::Helpers)
37
36
  ActionController::Base.send(:include, R18n::Rails::Controller)
38
37
  ActionController::Base.send(:before_filter, :set_r18n)
@@ -22,7 +22,7 @@ require 'r18n-rails-api'
22
22
  module R18n
23
23
  module Rails
24
24
  module Controller
25
- include Mixin
25
+ include Helpers
26
26
 
27
27
  private
28
28
 
@@ -42,6 +42,21 @@ module R18n
42
42
  super(*params)
43
43
  end
44
44
  end
45
+ alias :translate :t
46
+
47
+ # Extend +l+ helper to use also R18n syntax.
48
+ #
49
+ # l Time.now # Rails I18n default format
50
+ # l Time.now, :format => :short # Rails I18n style
51
+ # l Time.now, :human # R18n style
52
+ def l(obj, *params)
53
+ if params.empty? or params.first.is_a? Hash
54
+ super(obj, *params)
55
+ else
56
+ r18n.l(obj, *params)
57
+ end
58
+ end
59
+ alias :localize :l
45
60
  end
46
61
  end
47
62
  end
@@ -25,4 +25,13 @@ class TestController < ApplicationController
25
25
  render :text => "#{t('user.name')}" + "#{t.user.name}" +
26
26
  "#{r18n.t.user.name}"
27
27
  end
28
+
29
+ def time
30
+ render :text => l(Time.at(0).utc) + "\n" +
31
+ l(Time.at(0).utc, :format => :short)
32
+ end
33
+
34
+ def human_time
35
+ render :text => l(Time.now, :human)
36
+ end
28
37
  end
@@ -2952,3 +2952,2928 @@ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2952
2952
  
2953
2953
  SQL (0.1ms) SELECT version FROM "schema_migrations"
2954
2954
  SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
2955
+
2956
+
2957
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2958
+ Completed in 23ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2959
+
2960
+
2961
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2962
+ Parameters: {"locale"=>"ru"}
2963
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
2964
+
2965
+
2966
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2967
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2968
+
2969
+
2970
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2971
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
2972
+
2973
+
2974
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2975
+ Parameters: {"locale"=>"en"}
2976
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
2977
+
2978
+
2979
+ Processing TestController#available (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2980
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
2981
+
2982
+
2983
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2984
+ Parameters: {"locale"=>"en"}
2985
+ Rendering test/helpers
2986
+ Completed in 33ms (View: 22, DB: 0) | 200 OK [http://test.host/en/helpers]
2987
+
2988
+
2989
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2990
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
2991
+
2992
+
2993
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-22 01:05:26) [GET]
2994
+ Parameters: {"locale"=>"en"}
2995
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
2996
+ SQL (0.3ms) select sqlite_version(*)
2997
+ SQL (0.4ms)  SELECT name
2998
+ FROM sqlite_master
2999
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3000
+ 
3001
+ SQL (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3002
+ SQL (0.2ms)  SELECT name
3003
+ FROM sqlite_master
3004
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3005
+ 
3006
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3007
+ SQL (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3008
+ SQL (0.3ms)  SELECT name
3009
+ FROM sqlite_master
3010
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3011
+ 
3012
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3013
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3014
+
3015
+
3016
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:07:22) [GET]
3017
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3018
+
3019
+
3020
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:07:22) [GET]
3021
+ Parameters: {"locale"=>"ru"}
3022
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3023
+
3024
+
3025
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:07:22) [GET]
3026
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3027
+
3028
+
3029
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 01:07:22) [GET]
3030
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3031
+
3032
+
3033
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-22 01:07:23) [GET]
3034
+ Parameters: {"locale"=>"en"}
3035
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3036
+
3037
+
3038
+ Processing TestController#available (for 0.0.0.0 at 2010-03-22 01:07:23) [GET]
3039
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3040
+
3041
+
3042
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-22 01:07:23) [GET]
3043
+ Parameters: {"locale"=>"en"}
3044
+ Rendering test/helpers
3045
+ Completed in 21ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
3046
+
3047
+
3048
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-22 01:07:23) [GET]
3049
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3050
+
3051
+
3052
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-22 01:07:23) [GET]
3053
+ Parameters: {"locale"=>"en"}
3054
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3055
+ SQL (0.3ms) select sqlite_version(*)
3056
+ SQL (0.3ms)  SELECT name
3057
+ FROM sqlite_master
3058
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3059
+ 
3060
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3061
+ SQL (0.2ms)  SELECT name
3062
+ FROM sqlite_master
3063
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3064
+ 
3065
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3066
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3067
+ SQL (0.2ms)  SELECT name
3068
+ FROM sqlite_master
3069
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3070
+ 
3071
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3072
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3073
+
3074
+
3075
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3076
+ Completed in 24ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3077
+
3078
+
3079
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3080
+ Parameters: {"locale"=>"ru"}
3081
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3082
+
3083
+
3084
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3085
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3086
+
3087
+
3088
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3089
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3090
+
3091
+
3092
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3093
+ Parameters: {"locale"=>"en"}
3094
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3095
+
3096
+
3097
+ Processing TestController#available (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3098
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3099
+
3100
+
3101
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3102
+ Parameters: {"locale"=>"en"}
3103
+ Rendering test/helpers
3104
+ Completed in 68ms (View: 58, DB: 0) | 200 OK [http://test.host/en/helpers]
3105
+
3106
+
3107
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3108
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3109
+
3110
+
3111
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-22 04:41:34) [GET]
3112
+ Parameters: {"locale"=>"en"}
3113
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3114
+ SQL (0.3ms) select sqlite_version(*)
3115
+ SQL (0.4ms)  SELECT name
3116
+ FROM sqlite_master
3117
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3118
+ 
3119
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3120
+ SQL (0.2ms)  SELECT name
3121
+ FROM sqlite_master
3122
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3123
+ 
3124
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3125
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3126
+ SQL (0.3ms)  SELECT name
3127
+ FROM sqlite_master
3128
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3129
+ 
3130
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3131
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3132
+
3133
+
3134
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3135
+ Completed in 24ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3136
+
3137
+
3138
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3139
+ Parameters: {"locale"=>"ru"}
3140
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3141
+
3142
+
3143
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3144
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3145
+
3146
+
3147
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3148
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3149
+
3150
+
3151
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3152
+ Parameters: {"locale"=>"en"}
3153
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3154
+
3155
+
3156
+ Processing TestController#available (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3157
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3158
+
3159
+
3160
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3161
+ Parameters: {"locale"=>"en"}
3162
+ Rendering test/helpers
3163
+ Completed in 88ms (View: 76, DB: 0) | 200 OK [http://test.host/en/helpers]
3164
+
3165
+
3166
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3167
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3168
+
3169
+
3170
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-24 04:54:44) [GET]
3171
+ Parameters: {"locale"=>"en"}
3172
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3173
+ SQL (0.3ms) select sqlite_version(*)
3174
+ SQL (0.4ms)  SELECT name
3175
+ FROM sqlite_master
3176
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3177
+ 
3178
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3179
+ SQL (0.2ms)  SELECT name
3180
+ FROM sqlite_master
3181
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3182
+ 
3183
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3184
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3185
+ SQL (0.3ms)  SELECT name
3186
+ FROM sqlite_master
3187
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3188
+ 
3189
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3190
+ SQL (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3191
+
3192
+
3193
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3194
+ Completed in 33ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3195
+
3196
+
3197
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3198
+ Parameters: {"locale"=>"ru"}
3199
+ Completed in 19ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3200
+
3201
+
3202
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3203
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3204
+
3205
+
3206
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3207
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3208
+
3209
+
3210
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3211
+ Parameters: {"locale"=>"en"}
3212
+ Completed in 19ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3213
+
3214
+
3215
+ Processing TestController#available (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3216
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3217
+
3218
+
3219
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3220
+ Parameters: {"locale"=>"en"}
3221
+ Rendering test/helpers
3222
+ Completed in 23ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
3223
+
3224
+
3225
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3226
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3227
+
3228
+
3229
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-24 04:55:34) [GET]
3230
+ Parameters: {"locale"=>"en"}
3231
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3232
+ SQL (0.3ms) select sqlite_version(*)
3233
+ SQL (0.4ms)  SELECT name
3234
+ FROM sqlite_master
3235
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3236
+ 
3237
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3238
+ SQL (0.2ms)  SELECT name
3239
+ FROM sqlite_master
3240
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3241
+ 
3242
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3243
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3244
+ SQL (0.2ms)  SELECT name
3245
+ FROM sqlite_master
3246
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3247
+ 
3248
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3249
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3250
+
3251
+
3252
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3253
+ Completed in 25ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3254
+
3255
+
3256
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3257
+ Parameters: {"locale"=>"ru"}
3258
+ Completed in 17ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3259
+
3260
+
3261
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3262
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3263
+
3264
+
3265
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3266
+ Completed in 17ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3267
+
3268
+
3269
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3270
+ Parameters: {"locale"=>"en"}
3271
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3272
+
3273
+
3274
+ Processing TestController#available (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3275
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3276
+
3277
+
3278
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3279
+ Parameters: {"locale"=>"en"}
3280
+ Rendering test/helpers
3281
+ Completed in 24ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
3282
+
3283
+
3284
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3285
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3286
+
3287
+
3288
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-24 05:30:23) [GET]
3289
+ Parameters: {"locale"=>"en"}
3290
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3291
+ SQL (0.4ms) select sqlite_version(*)
3292
+ SQL (0.4ms)  SELECT name
3293
+ FROM sqlite_master
3294
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3295
+ 
3296
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3297
+ SQL (0.2ms)  SELECT name
3298
+ FROM sqlite_master
3299
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3300
+ 
3301
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3302
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3303
+ SQL (0.2ms)  SELECT name
3304
+ FROM sqlite_master
3305
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3306
+ 
3307
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3308
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3309
+
3310
+
3311
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3312
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3313
+
3314
+
3315
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3316
+ Parameters: {"locale"=>"ru"}
3317
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3318
+
3319
+
3320
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3321
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3322
+
3323
+
3324
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3325
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3326
+
3327
+
3328
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3329
+ Parameters: {"locale"=>"en"}
3330
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3331
+
3332
+
3333
+ Processing TestController#available (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3334
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3335
+
3336
+
3337
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3338
+ Parameters: {"locale"=>"en"}
3339
+ Rendering test/helpers
3340
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
3341
+
3342
+
3343
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3344
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3345
+
3346
+
3347
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-24 05:39:40) [GET]
3348
+ Parameters: {"locale"=>"en"}
3349
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3350
+ SQL (0.3ms) select sqlite_version(*)
3351
+ SQL (0.4ms)  SELECT name
3352
+ FROM sqlite_master
3353
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3354
+ 
3355
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3356
+ SQL (0.2ms)  SELECT name
3357
+ FROM sqlite_master
3358
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3359
+ 
3360
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3361
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3362
+ SQL (0.2ms)  SELECT name
3363
+ FROM sqlite_master
3364
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3365
+ 
3366
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3367
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3368
+
3369
+
3370
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3371
+ Completed in 27ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3372
+
3373
+
3374
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3375
+ Parameters: {"locale"=>"ru"}
3376
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3377
+
3378
+
3379
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3380
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3381
+
3382
+
3383
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3384
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3385
+
3386
+
3387
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3388
+ Parameters: {"locale"=>"en"}
3389
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3390
+
3391
+
3392
+ Processing TestController#available (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3393
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3394
+
3395
+
3396
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3397
+ Parameters: {"locale"=>"en"}
3398
+ Rendering test/helpers
3399
+ Completed in 51ms (View: 40, DB: 0) | 200 OK [http://test.host/en/helpers]
3400
+
3401
+
3402
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3403
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3404
+
3405
+
3406
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-26 16:50:10) [GET]
3407
+ Parameters: {"locale"=>"en"}
3408
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3409
+ SQL (0.3ms) select sqlite_version(*)
3410
+ SQL (0.4ms)  SELECT name
3411
+ FROM sqlite_master
3412
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3413
+ 
3414
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3415
+ SQL (0.2ms)  SELECT name
3416
+ FROM sqlite_master
3417
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3418
+ 
3419
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3420
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3421
+ SQL (0.3ms)  SELECT name
3422
+ FROM sqlite_master
3423
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3424
+ 
3425
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3426
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3427
+
3428
+
3429
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3430
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3431
+
3432
+
3433
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3434
+ Parameters: {"locale"=>"ru"}
3435
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3436
+
3437
+
3438
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3439
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3440
+
3441
+
3442
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3443
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3444
+
3445
+
3446
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3447
+ Parameters: {"locale"=>"en"}
3448
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3449
+
3450
+
3451
+ Processing TestController#available (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3452
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3453
+
3454
+
3455
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3456
+ Parameters: {"locale"=>"en"}
3457
+ Rendering test/helpers
3458
+ Completed in 21ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
3459
+
3460
+
3461
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3462
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3463
+
3464
+
3465
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-26 16:57:41) [GET]
3466
+ Parameters: {"locale"=>"en"}
3467
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3468
+ SQL (0.3ms) select sqlite_version(*)
3469
+ SQL (0.4ms)  SELECT name
3470
+ FROM sqlite_master
3471
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3472
+ 
3473
+ SQL (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3474
+ SQL (0.2ms)  SELECT name
3475
+ FROM sqlite_master
3476
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3477
+ 
3478
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3479
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3480
+ SQL (0.2ms)  SELECT name
3481
+ FROM sqlite_master
3482
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3483
+ 
3484
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3485
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3486
+
3487
+
3488
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3489
+ Completed in 25ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3490
+
3491
+
3492
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3493
+ Parameters: {"locale"=>"ru"}
3494
+ Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3495
+
3496
+
3497
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3498
+ Completed in 17ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3499
+
3500
+
3501
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3502
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3503
+
3504
+
3505
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3506
+ Parameters: {"locale"=>"en"}
3507
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3508
+
3509
+
3510
+ Processing TestController#available (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3511
+ Completed in 15ms (View: 6, DB: 0) | 200 OK [http://test.host/available]
3512
+
3513
+
3514
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3515
+ Parameters: {"locale"=>"en"}
3516
+ Rendering test/helpers
3517
+ Completed in 38ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
3518
+
3519
+
3520
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3521
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3522
+
3523
+
3524
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-26 21:18:45) [GET]
3525
+ Parameters: {"locale"=>"en"}
3526
+ Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3527
+ SQL (0.3ms) select sqlite_version(*)
3528
+ SQL (0.5ms)  SELECT name
3529
+ FROM sqlite_master
3530
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3531
+ 
3532
+ SQL (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3533
+ SQL (0.2ms)  SELECT name
3534
+ FROM sqlite_master
3535
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3536
+ 
3537
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3538
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3539
+ SQL (0.7ms)  SELECT name
3540
+ FROM sqlite_master
3541
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3542
+ 
3543
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
3544
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3545
+
3546
+
3547
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3548
+ Completed in 26ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3549
+
3550
+
3551
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3552
+ Parameters: {"locale"=>"ru"}
3553
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3554
+
3555
+
3556
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3557
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3558
+
3559
+
3560
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3561
+ Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3562
+
3563
+
3564
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3565
+ Parameters: {"locale"=>"en"}
3566
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3567
+
3568
+
3569
+ Processing TestController#available (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3570
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3571
+
3572
+
3573
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3574
+ Parameters: {"locale"=>"en"}
3575
+ Rendering test/helpers
3576
+ Completed in 21ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
3577
+
3578
+
3579
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3580
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3581
+
3582
+
3583
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-26 21:19:51) [GET]
3584
+ Parameters: {"locale"=>"en"}
3585
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3586
+ SQL (0.3ms) select sqlite_version(*)
3587
+ SQL (0.4ms)  SELECT name
3588
+ FROM sqlite_master
3589
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3590
+ 
3591
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3592
+ SQL (0.2ms)  SELECT name
3593
+ FROM sqlite_master
3594
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3595
+ 
3596
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3597
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3598
+ SQL (0.2ms)  SELECT name
3599
+ FROM sqlite_master
3600
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3601
+ 
3602
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3603
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3604
+
3605
+
3606
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:34:34) [GET]
3607
+ Completed in 48ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3608
+
3609
+
3610
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:34:34) [GET]
3611
+ Parameters: {"locale"=>"ru"}
3612
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3613
+
3614
+
3615
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:34:35) [GET]
3616
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3617
+
3618
+
3619
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 21:34:35) [GET]
3620
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3621
+
3622
+
3623
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-26 21:34:35) [GET]
3624
+ Parameters: {"locale"=>"en"}
3625
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3626
+
3627
+
3628
+ Processing TestController#available (for 0.0.0.0 at 2010-03-26 21:34:35) [GET]
3629
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3630
+
3631
+
3632
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-26 21:34:35) [GET]
3633
+ Parameters: {"locale"=>"en"}
3634
+ Rendering test/helpers
3635
+ Completed in 40ms (View: 29, DB: 0) | 200 OK [http://test.host/en/helpers]
3636
+
3637
+
3638
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-26 21:34:35) [GET]
3639
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3640
+
3641
+
3642
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-26 21:34:35) [GET]
3643
+ Parameters: {"locale"=>"en"}
3644
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3645
+ SQL (0.3ms) select sqlite_version(*)
3646
+ SQL (0.4ms)  SELECT name
3647
+ FROM sqlite_master
3648
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3649
+ 
3650
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3651
+ SQL (0.2ms)  SELECT name
3652
+ FROM sqlite_master
3653
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3654
+ 
3655
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3656
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3657
+ SQL (0.2ms)  SELECT name
3658
+ FROM sqlite_master
3659
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3660
+ 
3661
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3662
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3663
+
3664
+
3665
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3666
+ Completed in 25ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3667
+
3668
+
3669
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3670
+ Parameters: {"locale"=>"ru"}
3671
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3672
+
3673
+
3674
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3675
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3676
+
3677
+
3678
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3679
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3680
+
3681
+
3682
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3683
+ Parameters: {"locale"=>"en"}
3684
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3685
+
3686
+
3687
+ Processing TestController#available (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3688
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3689
+
3690
+
3691
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3692
+ Parameters: {"locale"=>"en"}
3693
+ Rendering test/helpers
3694
+ Completed in 37ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
3695
+
3696
+
3697
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3698
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3699
+
3700
+
3701
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-26 22:36:38) [GET]
3702
+ Parameters: {"locale"=>"en"}
3703
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3704
+ SQL (0.4ms) select sqlite_version(*)
3705
+ SQL (0.4ms)  SELECT name
3706
+ FROM sqlite_master
3707
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3708
+ 
3709
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3710
+ SQL (0.2ms)  SELECT name
3711
+ FROM sqlite_master
3712
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3713
+ 
3714
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3715
+ SQL (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3716
+ SQL (0.3ms)  SELECT name
3717
+ FROM sqlite_master
3718
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3719
+ 
3720
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3721
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3722
+
3723
+
3724
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3725
+ Completed in 25ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3726
+
3727
+
3728
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3729
+ Parameters: {"locale"=>"ru"}
3730
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3731
+
3732
+
3733
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3734
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3735
+
3736
+
3737
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3738
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3739
+
3740
+
3741
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3742
+ Parameters: {"locale"=>"en"}
3743
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3744
+
3745
+
3746
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3747
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3748
+
3749
+
3750
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3751
+ Parameters: {"locale"=>"en"}
3752
+ Rendering test/helpers
3753
+ Completed in 29ms (View: 18, DB: 0) | 200 OK [http://test.host/en/helpers]
3754
+
3755
+
3756
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3757
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3758
+
3759
+
3760
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 07:35:58) [GET]
3761
+ Parameters: {"locale"=>"en"}
3762
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3763
+ SQL (0.3ms) select sqlite_version(*)
3764
+ SQL (0.4ms)  SELECT name
3765
+ FROM sqlite_master
3766
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3767
+ 
3768
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3769
+ SQL (0.2ms)  SELECT name
3770
+ FROM sqlite_master
3771
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3772
+ 
3773
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3774
+ SQL (19.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3775
+ SQL (0.3ms)  SELECT name
3776
+ FROM sqlite_master
3777
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3778
+ 
3779
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3780
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3781
+
3782
+
3783
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3784
+ Completed in 39ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3785
+
3786
+
3787
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3788
+ Parameters: {"locale"=>"ru"}
3789
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3790
+
3791
+
3792
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3793
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3794
+
3795
+
3796
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3797
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3798
+
3799
+
3800
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3801
+ Parameters: {"locale"=>"en"}
3802
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3803
+
3804
+
3805
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3806
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3807
+
3808
+
3809
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3810
+ Parameters: {"locale"=>"en"}
3811
+ Rendering test/helpers
3812
+ Completed in 50ms (View: 39, DB: 0) | 200 OK [http://test.host/en/helpers]
3813
+
3814
+
3815
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3816
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3817
+
3818
+
3819
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 07:47:16) [GET]
3820
+ Parameters: {"locale"=>"en"}
3821
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3822
+ SQL (0.3ms) select sqlite_version(*)
3823
+ SQL (0.4ms)  SELECT name
3824
+ FROM sqlite_master
3825
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3826
+ 
3827
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3828
+ SQL (0.2ms)  SELECT name
3829
+ FROM sqlite_master
3830
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3831
+ 
3832
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3833
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3834
+ SQL (0.2ms)  SELECT name
3835
+ FROM sqlite_master
3836
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3837
+ 
3838
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3839
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3840
+
3841
+
3842
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3843
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3844
+
3845
+
3846
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3847
+ Parameters: {"locale"=>"ru"}
3848
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3849
+
3850
+
3851
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3852
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3853
+
3854
+
3855
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3856
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3857
+
3858
+
3859
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3860
+ Parameters: {"locale"=>"en"}
3861
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3862
+
3863
+
3864
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3865
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3866
+
3867
+
3868
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3869
+ Parameters: {"locale"=>"en"}
3870
+ Rendering test/helpers
3871
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
3872
+
3873
+
3874
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3875
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3876
+
3877
+
3878
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 07:49:55) [GET]
3879
+ Parameters: {"locale"=>"en"}
3880
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3881
+ SQL (0.3ms) select sqlite_version(*)
3882
+ SQL (0.5ms)  SELECT name
3883
+ FROM sqlite_master
3884
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3885
+ 
3886
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3887
+ SQL (0.2ms)  SELECT name
3888
+ FROM sqlite_master
3889
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3890
+ 
3891
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3892
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3893
+ SQL (0.3ms)  SELECT name
3894
+ FROM sqlite_master
3895
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3896
+ 
3897
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3898
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3899
+
3900
+
3901
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3902
+ Completed in 150ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3903
+
3904
+
3905
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3906
+ Parameters: {"locale"=>"ru"}
3907
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3908
+
3909
+
3910
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3911
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3912
+
3913
+
3914
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3915
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3916
+
3917
+
3918
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3919
+ Parameters: {"locale"=>"en"}
3920
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3921
+
3922
+
3923
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3924
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3925
+
3926
+
3927
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3928
+ Parameters: {"locale"=>"en"}
3929
+ Rendering test/helpers
3930
+ Completed in 50ms (View: 39, DB: 0) | 200 OK [http://test.host/en/helpers]
3931
+
3932
+
3933
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3934
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
3935
+
3936
+
3937
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3938
+ Parameters: {"locale"=>"en"}
3939
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
3940
+
3941
+
3942
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3943
+ Parameters: {"locale"=>"en"}
3944
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
3945
+
3946
+
3947
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:49:02) [GET]
3948
+ Parameters: {"locale"=>"en"}
3949
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
3950
+ SQL (0.3ms) select sqlite_version(*)
3951
+ SQL (0.4ms)  SELECT name
3952
+ FROM sqlite_master
3953
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3954
+ 
3955
+ SQL (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
3956
+ SQL (0.2ms)  SELECT name
3957
+ FROM sqlite_master
3958
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3959
+ 
3960
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3961
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3962
+ SQL (0.3ms)  SELECT name
3963
+ FROM sqlite_master
3964
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3965
+ 
3966
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
3967
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
3968
+
3969
+
3970
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
3971
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3972
+
3973
+
3974
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
3975
+ Parameters: {"locale"=>"ru"}
3976
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
3977
+
3978
+
3979
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
3980
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3981
+
3982
+
3983
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
3984
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
3985
+
3986
+
3987
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
3988
+ Parameters: {"locale"=>"en"}
3989
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
3990
+
3991
+
3992
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
3993
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
3994
+
3995
+
3996
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
3997
+ Parameters: {"locale"=>"en"}
3998
+ Rendering test/helpers
3999
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4000
+
4001
+
4002
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
4003
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4004
+
4005
+
4006
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
4007
+ Parameters: {"locale"=>"en"}
4008
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4009
+
4010
+
4011
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
4012
+ Parameters: {"locale"=>"en"}
4013
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4014
+
4015
+
4016
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:49:19) [GET]
4017
+ Parameters: {"locale"=>"en"}
4018
+ SQL (0.3ms) select sqlite_version(*)
4019
+ SQL (0.4ms)  SELECT name
4020
+ FROM sqlite_master
4021
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4022
+ 
4023
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4024
+ SQL (0.2ms)  SELECT name
4025
+ FROM sqlite_master
4026
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4027
+ 
4028
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4029
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4030
+ SQL (0.2ms)  SELECT name
4031
+ FROM sqlite_master
4032
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4033
+ 
4034
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4035
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4036
+
4037
+
4038
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4039
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4040
+
4041
+
4042
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4043
+ Parameters: {"locale"=>"ru"}
4044
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4045
+
4046
+
4047
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4048
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4049
+
4050
+
4051
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4052
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4053
+
4054
+
4055
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4056
+ Parameters: {"locale"=>"en"}
4057
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4058
+
4059
+
4060
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4061
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4062
+
4063
+
4064
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4065
+ Parameters: {"locale"=>"en"}
4066
+ Rendering test/helpers
4067
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4068
+
4069
+
4070
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4071
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4072
+
4073
+
4074
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4075
+ Parameters: {"locale"=>"en"}
4076
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4077
+
4078
+
4079
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4080
+ Parameters: {"locale"=>"en"}
4081
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4082
+
4083
+
4084
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:50:13) [GET]
4085
+ Parameters: {"locale"=>"en"}
4086
+ SQL (0.3ms) select sqlite_version(*)
4087
+ SQL (0.4ms)  SELECT name
4088
+ FROM sqlite_master
4089
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4090
+ 
4091
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4092
+ SQL (0.2ms)  SELECT name
4093
+ FROM sqlite_master
4094
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4095
+ 
4096
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4097
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4098
+ SQL (0.2ms)  SELECT name
4099
+ FROM sqlite_master
4100
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4101
+ 
4102
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4103
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4104
+
4105
+
4106
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4107
+ Completed in 23ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4108
+
4109
+
4110
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4111
+ Parameters: {"locale"=>"ru"}
4112
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4113
+
4114
+
4115
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4116
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4117
+
4118
+
4119
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4120
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4121
+
4122
+
4123
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4124
+ Parameters: {"locale"=>"en"}
4125
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4126
+
4127
+
4128
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4129
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4130
+
4131
+
4132
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4133
+ Parameters: {"locale"=>"en"}
4134
+ Rendering test/helpers
4135
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4136
+
4137
+
4138
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4139
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4140
+
4141
+
4142
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4143
+ Parameters: {"locale"=>"en"}
4144
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4145
+
4146
+
4147
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4148
+ Parameters: {"locale"=>"en"}
4149
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4150
+
4151
+
4152
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:51:30) [GET]
4153
+ Parameters: {"locale"=>"en"}
4154
+ SQL (0.3ms) select sqlite_version(*)
4155
+ SQL (0.4ms)  SELECT name
4156
+ FROM sqlite_master
4157
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4158
+ 
4159
+ SQL (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4160
+ SQL (0.2ms)  SELECT name
4161
+ FROM sqlite_master
4162
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4163
+ 
4164
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4165
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4166
+ SQL (0.2ms)  SELECT name
4167
+ FROM sqlite_master
4168
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4169
+ 
4170
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4171
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4172
+
4173
+
4174
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:48) [GET]
4175
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4176
+
4177
+
4178
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:48) [GET]
4179
+ Parameters: {"locale"=>"ru"}
4180
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4181
+
4182
+
4183
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:48) [GET]
4184
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4185
+
4186
+
4187
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:51:48) [GET]
4188
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4189
+
4190
+
4191
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:51:49) [GET]
4192
+ Parameters: {"locale"=>"en"}
4193
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4194
+
4195
+
4196
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:51:49) [GET]
4197
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4198
+
4199
+
4200
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:51:49) [GET]
4201
+ Parameters: {"locale"=>"en"}
4202
+ Rendering test/helpers
4203
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4204
+
4205
+
4206
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:51:49) [GET]
4207
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4208
+
4209
+
4210
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:51:49) [GET]
4211
+ Parameters: {"locale"=>"en"}
4212
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4213
+
4214
+
4215
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:51:49) [GET]
4216
+ Parameters: {"locale"=>"en"}
4217
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4218
+
4219
+
4220
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:51:49) [GET]
4221
+ Parameters: {"locale"=>"en"}
4222
+ SQL (0.3ms) select sqlite_version(*)
4223
+ SQL (0.4ms)  SELECT name
4224
+ FROM sqlite_master
4225
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4226
+ 
4227
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4228
+ SQL (0.2ms)  SELECT name
4229
+ FROM sqlite_master
4230
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4231
+ 
4232
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4233
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4234
+ SQL (0.2ms)  SELECT name
4235
+ FROM sqlite_master
4236
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4237
+ 
4238
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4239
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4240
+
4241
+
4242
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4243
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4244
+
4245
+
4246
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4247
+ Parameters: {"locale"=>"ru"}
4248
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4249
+
4250
+
4251
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4252
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4253
+
4254
+
4255
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4256
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4257
+
4258
+
4259
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4260
+ Parameters: {"locale"=>"en"}
4261
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4262
+
4263
+
4264
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4265
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4266
+
4267
+
4268
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4269
+ Parameters: {"locale"=>"en"}
4270
+ Rendering test/helpers
4271
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4272
+
4273
+
4274
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4275
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4276
+
4277
+
4278
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4279
+ Parameters: {"locale"=>"en"}
4280
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4281
+
4282
+
4283
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4284
+ Parameters: {"locale"=>"en"}
4285
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4286
+
4287
+
4288
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:52:58) [GET]
4289
+ Parameters: {"locale"=>"en"}
4290
+ SQL (0.3ms) select sqlite_version(*)
4291
+ SQL (0.4ms)  SELECT name
4292
+ FROM sqlite_master
4293
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4294
+ 
4295
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4296
+ SQL (0.2ms)  SELECT name
4297
+ FROM sqlite_master
4298
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4299
+ 
4300
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4301
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4302
+ SQL (0.2ms)  SELECT name
4303
+ FROM sqlite_master
4304
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4305
+ 
4306
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4307
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4308
+
4309
+
4310
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4311
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4312
+
4313
+
4314
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4315
+ Parameters: {"locale"=>"ru"}
4316
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4317
+
4318
+
4319
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4320
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4321
+
4322
+
4323
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4324
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4325
+
4326
+
4327
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4328
+ Parameters: {"locale"=>"en"}
4329
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4330
+
4331
+
4332
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4333
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4334
+
4335
+
4336
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4337
+ Parameters: {"locale"=>"en"}
4338
+ Rendering test/helpers
4339
+ Completed in 20ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
4340
+
4341
+
4342
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4343
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4344
+
4345
+
4346
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4347
+ Parameters: {"locale"=>"en"}
4348
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4349
+
4350
+
4351
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4352
+ Parameters: {"locale"=>"en"}
4353
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4354
+
4355
+
4356
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:54:34) [GET]
4357
+ Parameters: {"locale"=>"en"}
4358
+ SQL (0.3ms) select sqlite_version(*)
4359
+ SQL (0.4ms)  SELECT name
4360
+ FROM sqlite_master
4361
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4362
+ 
4363
+ SQL (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4364
+ SQL (0.2ms)  SELECT name
4365
+ FROM sqlite_master
4366
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4367
+ 
4368
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4369
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4370
+ SQL (0.2ms)  SELECT name
4371
+ FROM sqlite_master
4372
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4373
+ 
4374
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4375
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4376
+
4377
+
4378
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4379
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4380
+
4381
+
4382
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4383
+ Parameters: {"locale"=>"ru"}
4384
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4385
+
4386
+
4387
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4388
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4389
+
4390
+
4391
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4392
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4393
+
4394
+
4395
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4396
+ Parameters: {"locale"=>"en"}
4397
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4398
+
4399
+
4400
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4401
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4402
+
4403
+
4404
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4405
+ Parameters: {"locale"=>"en"}
4406
+ Rendering test/helpers
4407
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4408
+
4409
+
4410
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4411
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4412
+
4413
+
4414
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4415
+ Parameters: {"locale"=>"en"}
4416
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4417
+
4418
+
4419
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4420
+ Parameters: {"locale"=>"en"}
4421
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4422
+
4423
+
4424
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:54:43) [GET]
4425
+ Parameters: {"locale"=>"en"}
4426
+ SQL (0.3ms) select sqlite_version(*)
4427
+ SQL (0.4ms)  SELECT name
4428
+ FROM sqlite_master
4429
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4430
+ 
4431
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4432
+ SQL (0.2ms)  SELECT name
4433
+ FROM sqlite_master
4434
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4435
+ 
4436
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4437
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4438
+ SQL (0.3ms)  SELECT name
4439
+ FROM sqlite_master
4440
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4441
+ 
4442
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4443
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4444
+
4445
+
4446
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4447
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4448
+
4449
+
4450
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4451
+ Parameters: {"locale"=>"ru"}
4452
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4453
+
4454
+
4455
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4456
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4457
+
4458
+
4459
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4460
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4461
+
4462
+
4463
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4464
+ Parameters: {"locale"=>"en"}
4465
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4466
+
4467
+
4468
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4469
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4470
+
4471
+
4472
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4473
+ Parameters: {"locale"=>"en"}
4474
+ Rendering test/helpers
4475
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4476
+
4477
+
4478
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4479
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4480
+
4481
+
4482
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4483
+ Parameters: {"locale"=>"en"}
4484
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4485
+
4486
+
4487
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4488
+ Parameters: {"locale"=>"en"}
4489
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4490
+
4491
+
4492
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 09:57:05) [GET]
4493
+ Parameters: {"locale"=>"en"}
4494
+ SQL (0.6ms) select sqlite_version(*)
4495
+ SQL (0.4ms)  SELECT name
4496
+ FROM sqlite_master
4497
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4498
+ 
4499
+ SQL (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4500
+ SQL (0.2ms)  SELECT name
4501
+ FROM sqlite_master
4502
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4503
+ 
4504
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4505
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4506
+ SQL (0.2ms)  SELECT name
4507
+ FROM sqlite_master
4508
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4509
+ 
4510
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4511
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4512
+
4513
+
4514
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4515
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4516
+
4517
+
4518
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4519
+ Parameters: {"locale"=>"ru"}
4520
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4521
+
4522
+
4523
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4524
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4525
+
4526
+
4527
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4528
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4529
+
4530
+
4531
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4532
+ Parameters: {"locale"=>"en"}
4533
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4534
+
4535
+
4536
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4537
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4538
+
4539
+
4540
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4541
+ Parameters: {"locale"=>"en"}
4542
+ Rendering test/helpers
4543
+ Completed in 20ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
4544
+
4545
+
4546
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4547
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4548
+
4549
+
4550
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4551
+ Parameters: {"locale"=>"en"}
4552
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4553
+
4554
+
4555
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4556
+ Parameters: {"locale"=>"en"}
4557
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4558
+
4559
+
4560
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:02:03) [GET]
4561
+ Parameters: {"locale"=>"en"}
4562
+ SQL (0.3ms) select sqlite_version(*)
4563
+ SQL (0.5ms)  SELECT name
4564
+ FROM sqlite_master
4565
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4566
+ 
4567
+ SQL (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4568
+ SQL (0.2ms)  SELECT name
4569
+ FROM sqlite_master
4570
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4571
+ 
4572
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4573
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4574
+ SQL (0.2ms)  SELECT name
4575
+ FROM sqlite_master
4576
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4577
+ 
4578
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4579
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4580
+
4581
+
4582
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4583
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4584
+
4585
+
4586
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4587
+ Parameters: {"locale"=>"ru"}
4588
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4589
+
4590
+
4591
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4592
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4593
+
4594
+
4595
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4596
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4597
+
4598
+
4599
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4600
+ Parameters: {"locale"=>"en"}
4601
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4602
+
4603
+
4604
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4605
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4606
+
4607
+
4608
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4609
+ Parameters: {"locale"=>"en"}
4610
+ Rendering test/helpers
4611
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4612
+
4613
+
4614
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4615
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4616
+
4617
+
4618
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4619
+ Parameters: {"locale"=>"en"}
4620
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4621
+
4622
+
4623
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4624
+ Parameters: {"locale"=>"en"}
4625
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4626
+
4627
+
4628
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:02:27) [GET]
4629
+ Parameters: {"locale"=>"en"}
4630
+ SQL (0.3ms) select sqlite_version(*)
4631
+ SQL (0.4ms)  SELECT name
4632
+ FROM sqlite_master
4633
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4634
+ 
4635
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4636
+ SQL (0.2ms)  SELECT name
4637
+ FROM sqlite_master
4638
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4639
+ 
4640
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4641
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4642
+ SQL (0.2ms)  SELECT name
4643
+ FROM sqlite_master
4644
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4645
+ 
4646
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4647
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4648
+
4649
+
4650
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4651
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4652
+
4653
+
4654
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4655
+ Parameters: {"locale"=>"ru"}
4656
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4657
+
4658
+
4659
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4660
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4661
+
4662
+
4663
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4664
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4665
+
4666
+
4667
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4668
+ Parameters: {"locale"=>"en"}
4669
+ Completed in 15ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4670
+
4671
+
4672
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4673
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4674
+
4675
+
4676
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4677
+ Parameters: {"locale"=>"en"}
4678
+ Rendering test/helpers
4679
+ Completed in 20ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
4680
+
4681
+
4682
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4683
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4684
+
4685
+
4686
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4687
+ Parameters: {"locale"=>"en"}
4688
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4689
+
4690
+
4691
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4692
+ Parameters: {"locale"=>"en"}
4693
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4694
+
4695
+
4696
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:03:19) [GET]
4697
+ Parameters: {"locale"=>"en"}
4698
+ SQL (0.4ms) select sqlite_version(*)
4699
+ SQL (0.4ms)  SELECT name
4700
+ FROM sqlite_master
4701
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4702
+ 
4703
+ SQL (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4704
+ SQL (0.2ms)  SELECT name
4705
+ FROM sqlite_master
4706
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4707
+ 
4708
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4709
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4710
+ SQL (0.2ms)  SELECT name
4711
+ FROM sqlite_master
4712
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4713
+ 
4714
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
4715
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4716
+
4717
+
4718
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4719
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4720
+
4721
+
4722
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4723
+ Parameters: {"locale"=>"ru"}
4724
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4725
+
4726
+
4727
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4728
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4729
+
4730
+
4731
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4732
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4733
+
4734
+
4735
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4736
+ Parameters: {"locale"=>"en"}
4737
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4738
+
4739
+
4740
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4741
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4742
+
4743
+
4744
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4745
+ Parameters: {"locale"=>"en"}
4746
+ Rendering test/helpers
4747
+
4748
+
4749
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4750
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4751
+
4752
+
4753
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4754
+ Parameters: {"locale"=>"en"}
4755
+
4756
+
4757
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:05:19) [GET]
4758
+ Parameters: {"locale"=>"en"}
4759
+
4760
+
4761
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:05:20) [GET]
4762
+ Parameters: {"locale"=>"en"}
4763
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
4764
+ SQL (0.3ms) select sqlite_version(*)
4765
+ SQL (0.4ms)  SELECT name
4766
+ FROM sqlite_master
4767
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4768
+ 
4769
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4770
+ SQL (0.2ms)  SELECT name
4771
+ FROM sqlite_master
4772
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4773
+ 
4774
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4775
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4776
+ SQL (0.3ms)  SELECT name
4777
+ FROM sqlite_master
4778
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4779
+ 
4780
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4781
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4782
+
4783
+
4784
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:36) [GET]
4785
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4786
+
4787
+
4788
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:36) [GET]
4789
+ Parameters: {"locale"=>"ru"}
4790
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4791
+
4792
+
4793
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:36) [GET]
4794
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4795
+
4796
+
4797
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:05:36) [GET]
4798
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4799
+
4800
+
4801
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:05:36) [GET]
4802
+ Parameters: {"locale"=>"en"}
4803
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4804
+
4805
+
4806
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:05:36) [GET]
4807
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4808
+
4809
+
4810
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:05:36) [GET]
4811
+ Parameters: {"locale"=>"en"}
4812
+ Rendering test/helpers
4813
+
4814
+
4815
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:05:37) [GET]
4816
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4817
+
4818
+
4819
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:05:37) [GET]
4820
+ Parameters: {"locale"=>"en"}
4821
+
4822
+
4823
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:05:37) [GET]
4824
+ Parameters: {"locale"=>"en"}
4825
+
4826
+
4827
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:05:37) [GET]
4828
+ Parameters: {"locale"=>"en"}
4829
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
4830
+ SQL (0.3ms) select sqlite_version(*)
4831
+ SQL (0.5ms)  SELECT name
4832
+ FROM sqlite_master
4833
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4834
+ 
4835
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4836
+ SQL (0.3ms)  SELECT name
4837
+ FROM sqlite_master
4838
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4839
+ 
4840
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4841
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4842
+ SQL (0.2ms)  SELECT name
4843
+ FROM sqlite_master
4844
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4845
+ 
4846
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4847
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4848
+
4849
+
4850
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4851
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4852
+
4853
+
4854
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4855
+ Parameters: {"locale"=>"ru"}
4856
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4857
+
4858
+
4859
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4860
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4861
+
4862
+
4863
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4864
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4865
+
4866
+
4867
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4868
+ Parameters: {"locale"=>"en"}
4869
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4870
+
4871
+
4872
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4873
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4874
+
4875
+
4876
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4877
+ Parameters: {"locale"=>"en"}
4878
+ Rendering test/helpers
4879
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4880
+
4881
+
4882
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4883
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4884
+
4885
+
4886
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4887
+ Parameters: {"locale"=>"en"}
4888
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4889
+
4890
+
4891
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4892
+ Parameters: {"locale"=>"en"}
4893
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4894
+
4895
+
4896
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:06:20) [GET]
4897
+ Parameters: {"locale"=>"en"}
4898
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
4899
+ SQL (0.3ms) select sqlite_version(*)
4900
+ SQL (0.4ms)  SELECT name
4901
+ FROM sqlite_master
4902
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4903
+ 
4904
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4905
+ SQL (0.2ms)  SELECT name
4906
+ FROM sqlite_master
4907
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4908
+ 
4909
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4910
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4911
+ SQL (0.2ms)  SELECT name
4912
+ FROM sqlite_master
4913
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4914
+ 
4915
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4916
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4917
+
4918
+
4919
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:56) [GET]
4920
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4921
+
4922
+
4923
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:56) [GET]
4924
+ Parameters: {"locale"=>"ru"}
4925
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4926
+
4927
+
4928
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:56) [GET]
4929
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4930
+
4931
+
4932
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4933
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4934
+
4935
+
4936
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4937
+ Parameters: {"locale"=>"en"}
4938
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
4939
+
4940
+
4941
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4942
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
4943
+
4944
+
4945
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4946
+ Parameters: {"locale"=>"en"}
4947
+ Rendering test/helpers
4948
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
4949
+
4950
+
4951
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4952
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
4953
+
4954
+
4955
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4956
+ Parameters: {"locale"=>"en"}
4957
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
4958
+
4959
+
4960
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4961
+ Parameters: {"locale"=>"en"}
4962
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
4963
+
4964
+
4965
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:06:57) [GET]
4966
+ Parameters: {"locale"=>"en"}
4967
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
4968
+ SQL (0.3ms) select sqlite_version(*)
4969
+ SQL (0.4ms)  SELECT name
4970
+ FROM sqlite_master
4971
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4972
+ 
4973
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
4974
+ SQL (0.2ms)  SELECT name
4975
+ FROM sqlite_master
4976
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4977
+ 
4978
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4979
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4980
+ SQL (0.3ms)  SELECT name
4981
+ FROM sqlite_master
4982
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4983
+ 
4984
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
4985
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
4986
+
4987
+
4988
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:11) [GET]
4989
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4990
+
4991
+
4992
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
4993
+ Parameters: {"locale"=>"ru"}
4994
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
4995
+
4996
+
4997
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
4998
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
4999
+
5000
+
5001
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5002
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5003
+
5004
+
5005
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5006
+ Parameters: {"locale"=>"en"}
5007
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5008
+
5009
+
5010
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5011
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5012
+
5013
+
5014
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5015
+ Parameters: {"locale"=>"en"}
5016
+ Rendering test/helpers
5017
+ Completed in 31ms (View: 21, DB: 0) | 200 OK [http://test.host/en/helpers]
5018
+
5019
+
5020
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5021
+ Completed in 17ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5022
+
5023
+
5024
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5025
+ Parameters: {"locale"=>"en"}
5026
+ Completed in 28ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5027
+
5028
+
5029
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5030
+ Parameters: {"locale"=>"en"}
5031
+ Completed in 23ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5032
+
5033
+
5034
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:07:12) [GET]
5035
+ Parameters: {"locale"=>"en"}
5036
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5037
+ SQL (0.3ms) select sqlite_version(*)
5038
+ SQL (0.4ms)  SELECT name
5039
+ FROM sqlite_master
5040
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5041
+ 
5042
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5043
+ SQL (0.2ms)  SELECT name
5044
+ FROM sqlite_master
5045
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5046
+ 
5047
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5048
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5049
+ SQL (0.2ms)  SELECT name
5050
+ FROM sqlite_master
5051
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5052
+ 
5053
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5054
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5055
+
5056
+
5057
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5058
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5059
+
5060
+
5061
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5062
+ Parameters: {"locale"=>"ru"}
5063
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5064
+
5065
+
5066
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5067
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5068
+
5069
+
5070
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5071
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5072
+
5073
+
5074
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5075
+ Parameters: {"locale"=>"en"}
5076
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5077
+
5078
+
5079
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5080
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5081
+
5082
+
5083
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5084
+ Parameters: {"locale"=>"en"}
5085
+ Rendering test/helpers
5086
+ Completed in 20ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
5087
+
5088
+
5089
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5090
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5091
+
5092
+
5093
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5094
+ Parameters: {"locale"=>"en"}
5095
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5096
+
5097
+
5098
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5099
+ Parameters: {"locale"=>"en"}
5100
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5101
+
5102
+
5103
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:07:23) [GET]
5104
+ Parameters: {"locale"=>"en"}
5105
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5106
+ SQL (0.3ms) select sqlite_version(*)
5107
+ SQL (0.4ms)  SELECT name
5108
+ FROM sqlite_master
5109
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5110
+ 
5111
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5112
+ SQL (0.2ms)  SELECT name
5113
+ FROM sqlite_master
5114
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5115
+ 
5116
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5117
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5118
+ SQL (0.2ms)  SELECT name
5119
+ FROM sqlite_master
5120
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5121
+ 
5122
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5123
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5124
+
5125
+
5126
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5127
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5128
+
5129
+
5130
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5131
+ Parameters: {"locale"=>"ru"}
5132
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5133
+
5134
+
5135
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5136
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5137
+
5138
+
5139
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5140
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5141
+
5142
+
5143
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5144
+ Parameters: {"locale"=>"en"}
5145
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5146
+
5147
+
5148
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5149
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5150
+
5151
+
5152
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5153
+ Parameters: {"locale"=>"en"}
5154
+ Rendering test/helpers
5155
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5156
+
5157
+
5158
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5159
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5160
+
5161
+
5162
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5163
+ Parameters: {"locale"=>"en"}
5164
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5165
+
5166
+
5167
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5168
+ Parameters: {"locale"=>"en"}
5169
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5170
+
5171
+
5172
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:07:42) [GET]
5173
+ Parameters: {"locale"=>"en"}
5174
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5175
+ SQL (0.4ms) select sqlite_version(*)
5176
+ SQL (0.4ms)  SELECT name
5177
+ FROM sqlite_master
5178
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5179
+ 
5180
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5181
+ SQL (0.2ms)  SELECT name
5182
+ FROM sqlite_master
5183
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5184
+ 
5185
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5186
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5187
+ SQL (0.2ms)  SELECT name
5188
+ FROM sqlite_master
5189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5190
+ 
5191
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5192
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5193
+
5194
+
5195
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:57) [GET]
5196
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5197
+
5198
+
5199
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:57) [GET]
5200
+ Parameters: {"locale"=>"ru"}
5201
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5202
+
5203
+
5204
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5205
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5206
+
5207
+
5208
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5209
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5210
+
5211
+
5212
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5213
+ Parameters: {"locale"=>"en"}
5214
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5215
+
5216
+
5217
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5218
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5219
+
5220
+
5221
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5222
+ Parameters: {"locale"=>"en"}
5223
+ Rendering test/helpers
5224
+ Completed in 20ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
5225
+
5226
+
5227
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5228
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5229
+
5230
+
5231
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5232
+ Parameters: {"locale"=>"en"}
5233
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5234
+
5235
+
5236
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5237
+ Parameters: {"locale"=>"en"}
5238
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5239
+
5240
+
5241
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:07:58) [GET]
5242
+ Parameters: {"locale"=>"en"}
5243
+ Completed in 13ms (View: 1, DB: 0) | 200 OK [http://test.host/en/human_time]
5244
+ SQL (0.3ms) select sqlite_version(*)
5245
+ SQL (0.4ms)  SELECT name
5246
+ FROM sqlite_master
5247
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5248
+ 
5249
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5250
+ SQL (0.2ms)  SELECT name
5251
+ FROM sqlite_master
5252
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5253
+ 
5254
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5255
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5256
+ SQL (0.2ms)  SELECT name
5257
+ FROM sqlite_master
5258
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5259
+ 
5260
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5261
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5262
+
5263
+
5264
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5265
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5266
+
5267
+
5268
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5269
+ Parameters: {"locale"=>"ru"}
5270
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5271
+
5272
+
5273
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5274
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5275
+
5276
+
5277
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5278
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5279
+
5280
+
5281
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5282
+ Parameters: {"locale"=>"en"}
5283
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5284
+
5285
+
5286
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5287
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5288
+
5289
+
5290
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5291
+ Parameters: {"locale"=>"en"}
5292
+ Rendering test/helpers
5293
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5294
+
5295
+
5296
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5297
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5298
+
5299
+
5300
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5301
+ Parameters: {"locale"=>"en"}
5302
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5303
+
5304
+
5305
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5306
+ Parameters: {"locale"=>"en"}
5307
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5308
+
5309
+
5310
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:08:43) [GET]
5311
+ Parameters: {"locale"=>"en"}
5312
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5313
+ SQL (0.3ms) select sqlite_version(*)
5314
+ SQL (0.4ms)  SELECT name
5315
+ FROM sqlite_master
5316
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5317
+ 
5318
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5319
+ SQL (0.2ms)  SELECT name
5320
+ FROM sqlite_master
5321
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5322
+ 
5323
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5324
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5325
+ SQL (0.2ms)  SELECT name
5326
+ FROM sqlite_master
5327
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5328
+ 
5329
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5330
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5331
+
5332
+
5333
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5334
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5335
+
5336
+
5337
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5338
+ Parameters: {"locale"=>"ru"}
5339
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5340
+
5341
+
5342
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5343
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5344
+
5345
+
5346
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5347
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5348
+
5349
+
5350
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5351
+ Parameters: {"locale"=>"en"}
5352
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5353
+
5354
+
5355
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5356
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5357
+
5358
+
5359
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5360
+ Parameters: {"locale"=>"en"}
5361
+ Rendering test/helpers
5362
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5363
+
5364
+
5365
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5366
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5367
+
5368
+
5369
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5370
+ Parameters: {"locale"=>"en"}
5371
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5372
+
5373
+
5374
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5375
+ Parameters: {"locale"=>"en"}
5376
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5377
+
5378
+
5379
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:08:55) [GET]
5380
+ Parameters: {"locale"=>"en"}
5381
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5382
+ SQL (0.3ms) select sqlite_version(*)
5383
+ SQL (0.4ms)  SELECT name
5384
+ FROM sqlite_master
5385
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5386
+ 
5387
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5388
+ SQL (0.2ms)  SELECT name
5389
+ FROM sqlite_master
5390
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5391
+ 
5392
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5393
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5394
+ SQL (0.2ms)  SELECT name
5395
+ FROM sqlite_master
5396
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5397
+ 
5398
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5399
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5400
+
5401
+
5402
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:03) [GET]
5403
+ Completed in 23ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5404
+
5405
+
5406
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:03) [GET]
5407
+ Parameters: {"locale"=>"ru"}
5408
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5409
+
5410
+
5411
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5412
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5413
+
5414
+
5415
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5416
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5417
+
5418
+
5419
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5420
+ Parameters: {"locale"=>"en"}
5421
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5422
+
5423
+
5424
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5425
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5426
+
5427
+
5428
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5429
+ Parameters: {"locale"=>"en"}
5430
+ Rendering test/helpers
5431
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5432
+
5433
+
5434
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5435
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5436
+
5437
+
5438
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5439
+ Parameters: {"locale"=>"en"}
5440
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5441
+
5442
+
5443
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5444
+ Parameters: {"locale"=>"en"}
5445
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5446
+
5447
+
5448
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:09:04) [GET]
5449
+ Parameters: {"locale"=>"en"}
5450
+ Completed in 13ms (View: 1, DB: 0) | 200 OK [http://test.host/en/human_time]
5451
+ SQL (0.3ms) select sqlite_version(*)
5452
+ SQL (0.4ms)  SELECT name
5453
+ FROM sqlite_master
5454
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5455
+ 
5456
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5457
+ SQL (0.2ms)  SELECT name
5458
+ FROM sqlite_master
5459
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5460
+ 
5461
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5462
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5463
+ SQL (0.2ms)  SELECT name
5464
+ FROM sqlite_master
5465
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5466
+ 
5467
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5468
+ SQL (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5469
+
5470
+
5471
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5472
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5473
+
5474
+
5475
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5476
+ Parameters: {"locale"=>"ru"}
5477
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5478
+
5479
+
5480
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5481
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5482
+
5483
+
5484
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5485
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5486
+
5487
+
5488
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5489
+ Parameters: {"locale"=>"en"}
5490
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5491
+
5492
+
5493
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5494
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5495
+
5496
+
5497
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5498
+ Parameters: {"locale"=>"en"}
5499
+ Rendering test/helpers
5500
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5501
+
5502
+
5503
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5504
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5505
+
5506
+
5507
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5508
+ Parameters: {"locale"=>"en"}
5509
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5510
+
5511
+
5512
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5513
+ Parameters: {"locale"=>"en"}
5514
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5515
+
5516
+
5517
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:09:15) [GET]
5518
+ Parameters: {"locale"=>"en"}
5519
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5520
+ SQL (0.3ms) select sqlite_version(*)
5521
+ SQL (0.4ms)  SELECT name
5522
+ FROM sqlite_master
5523
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5524
+ 
5525
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5526
+ SQL (0.2ms)  SELECT name
5527
+ FROM sqlite_master
5528
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5529
+ 
5530
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5531
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5532
+ SQL (0.2ms)  SELECT name
5533
+ FROM sqlite_master
5534
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5535
+ 
5536
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5537
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5538
+
5539
+
5540
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5541
+ Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5542
+
5543
+
5544
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5545
+ Parameters: {"locale"=>"ru"}
5546
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5547
+
5548
+
5549
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5550
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5551
+
5552
+
5553
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5554
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5555
+
5556
+
5557
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5558
+ Parameters: {"locale"=>"en"}
5559
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5560
+
5561
+
5562
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5563
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5564
+
5565
+
5566
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5567
+ Parameters: {"locale"=>"en"}
5568
+ Rendering test/helpers
5569
+ Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5570
+
5571
+
5572
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5573
+ Completed in 17ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5574
+
5575
+
5576
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5577
+ Parameters: {"locale"=>"en"}
5578
+ Completed in 27ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5579
+
5580
+
5581
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5582
+ Parameters: {"locale"=>"en"}
5583
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5584
+
5585
+
5586
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:09:46) [GET]
5587
+ Parameters: {"locale"=>"en"}
5588
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5589
+ SQL (0.3ms) select sqlite_version(*)
5590
+ SQL (0.4ms)  SELECT name
5591
+ FROM sqlite_master
5592
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5593
+ 
5594
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5595
+ SQL (0.2ms)  SELECT name
5596
+ FROM sqlite_master
5597
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5598
+ 
5599
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5600
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5601
+ SQL (0.3ms)  SELECT name
5602
+ FROM sqlite_master
5603
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5604
+ 
5605
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5606
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5607
+
5608
+
5609
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5610
+ Completed in 27ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5611
+
5612
+
5613
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5614
+ Parameters: {"locale"=>"ru"}
5615
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5616
+
5617
+
5618
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5619
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5620
+
5621
+
5622
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5623
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5624
+
5625
+
5626
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5627
+ Parameters: {"locale"=>"en"}
5628
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5629
+
5630
+
5631
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5632
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5633
+
5634
+
5635
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5636
+ Parameters: {"locale"=>"en"}
5637
+ Rendering test/helpers
5638
+
5639
+
5640
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5641
+ Completed in 10ms (View: 1, DB: 0) | 200 OK [http://test.host/untranslated]
5642
+
5643
+
5644
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5645
+ Parameters: {"locale"=>"en"}
5646
+
5647
+
5648
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5649
+ Parameters: {"locale"=>"en"}
5650
+
5651
+
5652
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:11:10) [GET]
5653
+ Parameters: {"locale"=>"en"}
5654
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5655
+ SQL (0.3ms) select sqlite_version(*)
5656
+ SQL (0.4ms)  SELECT name
5657
+ FROM sqlite_master
5658
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5659
+ 
5660
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5661
+ SQL (0.2ms)  SELECT name
5662
+ FROM sqlite_master
5663
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5664
+ 
5665
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5666
+ SQL (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5667
+ SQL (0.2ms)  SELECT name
5668
+ FROM sqlite_master
5669
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5670
+ 
5671
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5672
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5673
+
5674
+
5675
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5676
+ Completed in 23ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5677
+
5678
+
5679
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5680
+ Parameters: {"locale"=>"ru"}
5681
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5682
+
5683
+
5684
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5685
+ Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5686
+
5687
+
5688
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5689
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5690
+
5691
+
5692
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5693
+ Parameters: {"locale"=>"en"}
5694
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5695
+
5696
+
5697
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5698
+ Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5699
+
5700
+
5701
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5702
+ Parameters: {"locale"=>"en"}
5703
+ Rendering test/helpers
5704
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5705
+
5706
+
5707
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5708
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5709
+
5710
+
5711
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5712
+ Parameters: {"locale"=>"en"}
5713
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5714
+
5715
+
5716
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5717
+ Parameters: {"locale"=>"en"}
5718
+ Completed in 18ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5719
+
5720
+
5721
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:11:30) [GET]
5722
+ Parameters: {"locale"=>"en"}
5723
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5724
+ SQL (0.3ms) select sqlite_version(*)
5725
+ SQL (0.4ms)  SELECT name
5726
+ FROM sqlite_master
5727
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5728
+ 
5729
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5730
+ SQL (0.2ms)  SELECT name
5731
+ FROM sqlite_master
5732
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5733
+ 
5734
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5735
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5736
+ SQL (0.2ms)  SELECT name
5737
+ FROM sqlite_master
5738
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5739
+ 
5740
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5741
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5742
+
5743
+
5744
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5745
+ Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5746
+
5747
+
5748
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5749
+ Parameters: {"locale"=>"ru"}
5750
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5751
+
5752
+
5753
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5754
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5755
+
5756
+
5757
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5758
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5759
+
5760
+
5761
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5762
+ Parameters: {"locale"=>"en"}
5763
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5764
+
5765
+
5766
+ Processing TestController#available (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5767
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5768
+
5769
+
5770
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5771
+ Parameters: {"locale"=>"en"}
5772
+ Rendering test/helpers
5773
+ Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
5774
+
5775
+
5776
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5777
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5778
+
5779
+
5780
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5781
+ Parameters: {"locale"=>"en"}
5782
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5783
+
5784
+
5785
+ Processing TestController#time (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5786
+ Parameters: {"locale"=>"en"}
5787
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5788
+
5789
+
5790
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-28 10:11:40) [GET]
5791
+ Parameters: {"locale"=>"en"}
5792
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5793
+ SQL (0.3ms) select sqlite_version(*)
5794
+ SQL (0.4ms)  SELECT name
5795
+ FROM sqlite_master
5796
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5797
+ 
5798
+ SQL (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5799
+ SQL (0.2ms)  SELECT name
5800
+ FROM sqlite_master
5801
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5802
+ 
5803
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5804
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5805
+ SQL (0.2ms)  SELECT name
5806
+ FROM sqlite_master
5807
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5808
+ 
5809
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5810
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')
5811
+
5812
+
5813
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5814
+ Completed in 24ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5815
+
5816
+
5817
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5818
+ Parameters: {"locale"=>"ru"}
5819
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
5820
+
5821
+
5822
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5823
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5824
+
5825
+
5826
+ Processing TestController#locales (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5827
+ Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
5828
+
5829
+
5830
+ Processing TestController#translations (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5831
+ Parameters: {"locale"=>"en"}
5832
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
5833
+
5834
+
5835
+ Processing TestController#available (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5836
+ Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
5837
+
5838
+
5839
+ Processing TestController#helpers (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5840
+ Parameters: {"locale"=>"en"}
5841
+ Rendering test/helpers
5842
+ Completed in 38ms (View: 27, DB: 0) | 200 OK [http://test.host/en/helpers]
5843
+
5844
+
5845
+ Processing TestController#untranslated (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5846
+ Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
5847
+
5848
+
5849
+ Processing TestController#controller (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5850
+ Parameters: {"locale"=>"en"}
5851
+ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
5852
+
5853
+
5854
+ Processing TestController#time (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5855
+ Parameters: {"locale"=>"en"}
5856
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/time]
5857
+
5858
+
5859
+ Processing TestController#human_time (for 0.0.0.0 at 2010-03-29 11:50:25) [GET]
5860
+ Parameters: {"locale"=>"en"}
5861
+ Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/human_time]
5862
+ SQL (0.3ms) select sqlite_version(*)
5863
+ SQL (0.4ms)  SELECT name
5864
+ FROM sqlite_master
5865
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5866
+ 
5867
+ SQL (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) 
5868
+ SQL (0.2ms)  SELECT name
5869
+ FROM sqlite_master
5870
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5871
+ 
5872
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5873
+ SQL (0.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5874
+ SQL (0.3ms)  SELECT name
5875
+ FROM sqlite_master
5876
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
5877
+ 
5878
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
5879
+ SQL (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20091218130034')