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 +1 -2
- data/lib/r18n-rails/controller.rb +1 -1
- data/lib/r18n-rails/helpers.rb +15 -0
- data/spec/app/app/controllers/test_controller.rb +9 -0
- data/spec/app/log/test.log +2925 -0
- data/spec/rails_spec.rb +12 -0
- metadata +2 -3
- data/lib/r18n-rails/mixin.rb +0 -41
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::
|
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)
|
data/lib/r18n-rails/helpers.rb
CHANGED
@@ -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
|
data/spec/app/log/test.log
CHANGED
@@ -2952,3 +2952,2928 @@ Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
|
2952
2952
|
[0m
|
2953
2953
|
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2954
2954
|
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2997
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2998
|
+
FROM sqlite_master
|
2999
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3000
|
+
[0m
|
3001
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3002
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3003
|
+
FROM sqlite_master
|
3004
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3005
|
+
[0m
|
3006
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3007
|
+
[4;35;1mSQL (3.1ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3008
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3009
|
+
FROM sqlite_master
|
3010
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3011
|
+
[0m
|
3012
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3013
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3056
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
3057
|
+
FROM sqlite_master
|
3058
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3059
|
+
[0m
|
3060
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3061
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3062
|
+
FROM sqlite_master
|
3063
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3064
|
+
[0m
|
3065
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3066
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3067
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3068
|
+
FROM sqlite_master
|
3069
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3070
|
+
[0m
|
3071
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3072
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3115
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3116
|
+
FROM sqlite_master
|
3117
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3118
|
+
[0m
|
3119
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3120
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3121
|
+
FROM sqlite_master
|
3122
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3123
|
+
[0m
|
3124
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3125
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3126
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3127
|
+
FROM sqlite_master
|
3128
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3129
|
+
[0m
|
3130
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3131
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3174
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3175
|
+
FROM sqlite_master
|
3176
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3177
|
+
[0m
|
3178
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3179
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3180
|
+
FROM sqlite_master
|
3181
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3182
|
+
[0m
|
3183
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3184
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3185
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3186
|
+
FROM sqlite_master
|
3187
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3188
|
+
[0m
|
3189
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3190
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3233
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3234
|
+
FROM sqlite_master
|
3235
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3236
|
+
[0m
|
3237
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3238
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3239
|
+
FROM sqlite_master
|
3240
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3241
|
+
[0m
|
3242
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3243
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3244
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3245
|
+
FROM sqlite_master
|
3246
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3247
|
+
[0m
|
3248
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3249
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mselect sqlite_version(*)[0m
|
3292
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3293
|
+
FROM sqlite_master
|
3294
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3295
|
+
[0m
|
3296
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3297
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3298
|
+
FROM sqlite_master
|
3299
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3300
|
+
[0m
|
3301
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3302
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3303
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3304
|
+
FROM sqlite_master
|
3305
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3306
|
+
[0m
|
3307
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3308
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3351
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3352
|
+
FROM sqlite_master
|
3353
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3354
|
+
[0m
|
3355
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3356
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3357
|
+
FROM sqlite_master
|
3358
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3359
|
+
[0m
|
3360
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3361
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3362
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3363
|
+
FROM sqlite_master
|
3364
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3365
|
+
[0m
|
3366
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3367
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3410
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3411
|
+
FROM sqlite_master
|
3412
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3413
|
+
[0m
|
3414
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3415
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3416
|
+
FROM sqlite_master
|
3417
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3418
|
+
[0m
|
3419
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3420
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3421
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3422
|
+
FROM sqlite_master
|
3423
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3424
|
+
[0m
|
3425
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3426
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3469
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3470
|
+
FROM sqlite_master
|
3471
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3472
|
+
[0m
|
3473
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3474
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3475
|
+
FROM sqlite_master
|
3476
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3477
|
+
[0m
|
3478
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3479
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3480
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3481
|
+
FROM sqlite_master
|
3482
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3483
|
+
[0m
|
3484
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3485
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3528
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
3529
|
+
FROM sqlite_master
|
3530
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3531
|
+
[0m
|
3532
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3533
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3534
|
+
FROM sqlite_master
|
3535
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3536
|
+
[0m
|
3537
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3538
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3539
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
3540
|
+
FROM sqlite_master
|
3541
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3542
|
+
[0m
|
3543
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3544
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3587
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3588
|
+
FROM sqlite_master
|
3589
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3590
|
+
[0m
|
3591
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3592
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3593
|
+
FROM sqlite_master
|
3594
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3595
|
+
[0m
|
3596
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3597
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3598
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3599
|
+
FROM sqlite_master
|
3600
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3601
|
+
[0m
|
3602
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3603
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3646
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3647
|
+
FROM sqlite_master
|
3648
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3649
|
+
[0m
|
3650
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3651
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3652
|
+
FROM sqlite_master
|
3653
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3654
|
+
[0m
|
3655
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3656
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3657
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3658
|
+
FROM sqlite_master
|
3659
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3660
|
+
[0m
|
3661
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3662
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mselect sqlite_version(*)[0m
|
3705
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3706
|
+
FROM sqlite_master
|
3707
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3708
|
+
[0m
|
3709
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3710
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3711
|
+
FROM sqlite_master
|
3712
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3713
|
+
[0m
|
3714
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3715
|
+
[4;35;1mSQL (0.5ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3716
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3717
|
+
FROM sqlite_master
|
3718
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3719
|
+
[0m
|
3720
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3721
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3764
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3765
|
+
FROM sqlite_master
|
3766
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3767
|
+
[0m
|
3768
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3769
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3770
|
+
FROM sqlite_master
|
3771
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3772
|
+
[0m
|
3773
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3774
|
+
[4;35;1mSQL (19.1ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3775
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3776
|
+
FROM sqlite_master
|
3777
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3778
|
+
[0m
|
3779
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3780
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3823
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3824
|
+
FROM sqlite_master
|
3825
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3826
|
+
[0m
|
3827
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3828
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3829
|
+
FROM sqlite_master
|
3830
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3831
|
+
[0m
|
3832
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3833
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3834
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
3835
|
+
FROM sqlite_master
|
3836
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3837
|
+
[0m
|
3838
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3839
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3882
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
3883
|
+
FROM sqlite_master
|
3884
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3885
|
+
[0m
|
3886
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3887
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3888
|
+
FROM sqlite_master
|
3889
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3890
|
+
[0m
|
3891
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3892
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3893
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3894
|
+
FROM sqlite_master
|
3895
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3896
|
+
[0m
|
3897
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3898
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
3951
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
3952
|
+
FROM sqlite_master
|
3953
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3954
|
+
[0m
|
3955
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
3956
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
3957
|
+
FROM sqlite_master
|
3958
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3959
|
+
[0m
|
3960
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3961
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3962
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
3963
|
+
FROM sqlite_master
|
3964
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
3965
|
+
[0m
|
3966
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
3967
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4019
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4020
|
+
FROM sqlite_master
|
4021
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4022
|
+
[0m
|
4023
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4024
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4025
|
+
FROM sqlite_master
|
4026
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4027
|
+
[0m
|
4028
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4029
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4030
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4031
|
+
FROM sqlite_master
|
4032
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4033
|
+
[0m
|
4034
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4035
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4087
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4088
|
+
FROM sqlite_master
|
4089
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4090
|
+
[0m
|
4091
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4092
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4093
|
+
FROM sqlite_master
|
4094
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4095
|
+
[0m
|
4096
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4097
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4098
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4099
|
+
FROM sqlite_master
|
4100
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4101
|
+
[0m
|
4102
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4103
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4155
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4156
|
+
FROM sqlite_master
|
4157
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4158
|
+
[0m
|
4159
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4160
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4161
|
+
FROM sqlite_master
|
4162
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4163
|
+
[0m
|
4164
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4165
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4166
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4167
|
+
FROM sqlite_master
|
4168
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4169
|
+
[0m
|
4170
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4171
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4223
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4224
|
+
FROM sqlite_master
|
4225
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4226
|
+
[0m
|
4227
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4228
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4229
|
+
FROM sqlite_master
|
4230
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4231
|
+
[0m
|
4232
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4233
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4234
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4235
|
+
FROM sqlite_master
|
4236
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4237
|
+
[0m
|
4238
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4239
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4291
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4292
|
+
FROM sqlite_master
|
4293
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4294
|
+
[0m
|
4295
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4296
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4297
|
+
FROM sqlite_master
|
4298
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4299
|
+
[0m
|
4300
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4301
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4302
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4303
|
+
FROM sqlite_master
|
4304
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4305
|
+
[0m
|
4306
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4307
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4359
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4360
|
+
FROM sqlite_master
|
4361
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4362
|
+
[0m
|
4363
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4364
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4365
|
+
FROM sqlite_master
|
4366
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4367
|
+
[0m
|
4368
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4369
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4370
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4371
|
+
FROM sqlite_master
|
4372
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4373
|
+
[0m
|
4374
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4375
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4427
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4428
|
+
FROM sqlite_master
|
4429
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4430
|
+
[0m
|
4431
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4432
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4433
|
+
FROM sqlite_master
|
4434
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4435
|
+
[0m
|
4436
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4437
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4438
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
4439
|
+
FROM sqlite_master
|
4440
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4441
|
+
[0m
|
4442
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4443
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mselect sqlite_version(*)[0m
|
4495
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4496
|
+
FROM sqlite_master
|
4497
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4498
|
+
[0m
|
4499
|
+
[4;36;1mSQL (2.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4500
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4501
|
+
FROM sqlite_master
|
4502
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4503
|
+
[0m
|
4504
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4505
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4506
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4507
|
+
FROM sqlite_master
|
4508
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4509
|
+
[0m
|
4510
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4511
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4563
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
4564
|
+
FROM sqlite_master
|
4565
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4566
|
+
[0m
|
4567
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4568
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4569
|
+
FROM sqlite_master
|
4570
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4571
|
+
[0m
|
4572
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4573
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4574
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4575
|
+
FROM sqlite_master
|
4576
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4577
|
+
[0m
|
4578
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4579
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4631
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4632
|
+
FROM sqlite_master
|
4633
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4634
|
+
[0m
|
4635
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4636
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4637
|
+
FROM sqlite_master
|
4638
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4639
|
+
[0m
|
4640
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4641
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4642
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4643
|
+
FROM sqlite_master
|
4644
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4645
|
+
[0m
|
4646
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4647
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mselect sqlite_version(*)[0m
|
4699
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4700
|
+
FROM sqlite_master
|
4701
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4702
|
+
[0m
|
4703
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4704
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4705
|
+
FROM sqlite_master
|
4706
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4707
|
+
[0m
|
4708
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4709
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4710
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4711
|
+
FROM sqlite_master
|
4712
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4713
|
+
[0m
|
4714
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4715
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4765
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4766
|
+
FROM sqlite_master
|
4767
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4768
|
+
[0m
|
4769
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4770
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4771
|
+
FROM sqlite_master
|
4772
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4773
|
+
[0m
|
4774
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4775
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4776
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
4777
|
+
FROM sqlite_master
|
4778
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4779
|
+
[0m
|
4780
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4781
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4831
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
4832
|
+
FROM sqlite_master
|
4833
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4834
|
+
[0m
|
4835
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4836
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
4837
|
+
FROM sqlite_master
|
4838
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4839
|
+
[0m
|
4840
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4841
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4842
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4843
|
+
FROM sqlite_master
|
4844
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4845
|
+
[0m
|
4846
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4847
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4900
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4901
|
+
FROM sqlite_master
|
4902
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4903
|
+
[0m
|
4904
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4905
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4906
|
+
FROM sqlite_master
|
4907
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4908
|
+
[0m
|
4909
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4910
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4911
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
4912
|
+
FROM sqlite_master
|
4913
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4914
|
+
[0m
|
4915
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4916
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
4969
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
4970
|
+
FROM sqlite_master
|
4971
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4972
|
+
[0m
|
4973
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
4974
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
4975
|
+
FROM sqlite_master
|
4976
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4977
|
+
[0m
|
4978
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4979
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4980
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
4981
|
+
FROM sqlite_master
|
4982
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
4983
|
+
[0m
|
4984
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
4985
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5038
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5039
|
+
FROM sqlite_master
|
5040
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5041
|
+
[0m
|
5042
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5043
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5044
|
+
FROM sqlite_master
|
5045
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5046
|
+
[0m
|
5047
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5048
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5049
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5050
|
+
FROM sqlite_master
|
5051
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5052
|
+
[0m
|
5053
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5054
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5107
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5108
|
+
FROM sqlite_master
|
5109
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5110
|
+
[0m
|
5111
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5112
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5113
|
+
FROM sqlite_master
|
5114
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5115
|
+
[0m
|
5116
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5117
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5118
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5119
|
+
FROM sqlite_master
|
5120
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5121
|
+
[0m
|
5122
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5123
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mselect sqlite_version(*)[0m
|
5176
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5177
|
+
FROM sqlite_master
|
5178
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5179
|
+
[0m
|
5180
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5181
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5182
|
+
FROM sqlite_master
|
5183
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5184
|
+
[0m
|
5185
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5186
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5187
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5188
|
+
FROM sqlite_master
|
5189
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5190
|
+
[0m
|
5191
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5192
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5245
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5246
|
+
FROM sqlite_master
|
5247
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5248
|
+
[0m
|
5249
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5250
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5251
|
+
FROM sqlite_master
|
5252
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5253
|
+
[0m
|
5254
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5255
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5256
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5257
|
+
FROM sqlite_master
|
5258
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5259
|
+
[0m
|
5260
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5261
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5314
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5315
|
+
FROM sqlite_master
|
5316
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5317
|
+
[0m
|
5318
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5319
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5320
|
+
FROM sqlite_master
|
5321
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5322
|
+
[0m
|
5323
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5324
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5325
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5326
|
+
FROM sqlite_master
|
5327
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5328
|
+
[0m
|
5329
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5330
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5383
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5384
|
+
FROM sqlite_master
|
5385
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5386
|
+
[0m
|
5387
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5388
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5389
|
+
FROM sqlite_master
|
5390
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5391
|
+
[0m
|
5392
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5393
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5394
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5395
|
+
FROM sqlite_master
|
5396
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5397
|
+
[0m
|
5398
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5399
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5452
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5453
|
+
FROM sqlite_master
|
5454
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5455
|
+
[0m
|
5456
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5457
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5458
|
+
FROM sqlite_master
|
5459
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5460
|
+
[0m
|
5461
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5462
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5463
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5464
|
+
FROM sqlite_master
|
5465
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5466
|
+
[0m
|
5467
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5468
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5521
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5522
|
+
FROM sqlite_master
|
5523
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5524
|
+
[0m
|
5525
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5526
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5527
|
+
FROM sqlite_master
|
5528
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5529
|
+
[0m
|
5530
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5531
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5532
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5533
|
+
FROM sqlite_master
|
5534
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5535
|
+
[0m
|
5536
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5537
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5590
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5591
|
+
FROM sqlite_master
|
5592
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5593
|
+
[0m
|
5594
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5595
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5596
|
+
FROM sqlite_master
|
5597
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5598
|
+
[0m
|
5599
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5600
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5601
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
5602
|
+
FROM sqlite_master
|
5603
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5604
|
+
[0m
|
5605
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5606
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5656
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5657
|
+
FROM sqlite_master
|
5658
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5659
|
+
[0m
|
5660
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5661
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5662
|
+
FROM sqlite_master
|
5663
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5664
|
+
[0m
|
5665
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5666
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5667
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5668
|
+
FROM sqlite_master
|
5669
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5670
|
+
[0m
|
5671
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5672
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5725
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5726
|
+
FROM sqlite_master
|
5727
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5728
|
+
[0m
|
5729
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5730
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5731
|
+
FROM sqlite_master
|
5732
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5733
|
+
[0m
|
5734
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5735
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5736
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5737
|
+
FROM sqlite_master
|
5738
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5739
|
+
[0m
|
5740
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5741
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5794
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5795
|
+
FROM sqlite_master
|
5796
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5797
|
+
[0m
|
5798
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5799
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5800
|
+
FROM sqlite_master
|
5801
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5802
|
+
[0m
|
5803
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5804
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5805
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
5806
|
+
FROM sqlite_master
|
5807
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5808
|
+
[0m
|
5809
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5810
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
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
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
5863
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
5864
|
+
FROM sqlite_master
|
5865
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5866
|
+
[0m
|
5867
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
5868
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
5869
|
+
FROM sqlite_master
|
5870
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5871
|
+
[0m
|
5872
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5873
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5874
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
5875
|
+
FROM sqlite_master
|
5876
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
5877
|
+
[0m
|
5878
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
5879
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|