copycat 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (23) hide show
  1. data/README.md +5 -3
  2. data/app/controllers/copycat_translations_controller.rb +4 -2
  3. data/app/models/copycat_translation.rb +4 -0
  4. data/lib/copycat/version.rb +1 -1
  5. data/spec/dummy/config/initializers/copycat.rb +2 -2
  6. data/spec/dummy/db/development.sqlite3 +0 -0
  7. data/spec/dummy/db/migrate/{20120407193855_create_copycat_translations.copycat_engine.rb → 20120320194234_create_copycat_translations.copycat_engine.rb} +0 -0
  8. data/spec/dummy/db/schema.rb +1 -1
  9. data/spec/dummy/db/test.sqlite3 +0 -0
  10. data/spec/dummy/log/development.log +1485 -25
  11. data/spec/dummy/log/test.log +24660 -174
  12. data/spec/dummy/tmp/cache/assets/C19/060/sprockets%2F125436f53217b7f564aa5016d1168709 +0 -0
  13. data/spec/dummy/tmp/cache/assets/CB3/6E0/sprockets%2F0f4c96b04436bf7ae900561753947d4c +0 -0
  14. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  15. data/spec/dummy/tmp/cache/assets/D09/190/sprockets%2Fb2bddd007999a56d8b20c92301ea1983 +0 -0
  16. data/spec/dummy/tmp/cache/assets/D1A/DB0/sprockets%2F26d700197b8d25f954d56d8f31f2c8bc +0 -0
  17. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  18. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  19. data/spec/dummy/tmp/cache/assets/DA4/EE0/sprockets%2Fcd39e3d56788faea331e0f5bac67329b +0 -0
  20. data/spec/dummy/tmp/cache/assets/DBD/220/sprockets%2F0cbff5c1a349439c1c444cbb4a57acc4 +0 -0
  21. data/spec/dummy/tmp/cache/assets/DDD/780/sprockets%2Fe7880b84c3ecb507fabc99b9ef6b70e3 +0 -0
  22. data/spec/dummy/tmp/cache/assets/DF8/310/sprockets%2Fccb12c4009c2f876d51dee8bae4c64ec +0 -0
  23. metadata +82 -65
data/README.md CHANGED
@@ -15,7 +15,7 @@ rake db:migrate
15
15
 
16
16
  Since Copycat data is stored locally on an indexed table with no foreign keys, page loads are very fast and changes appear instantly.
17
17
 
18
- In a view, use the Rails i18N.translate() method where you would like to display some editable copy:
18
+ In a view, use the Rails i18n translate method where you would like to display some editable copy:
19
19
 
20
20
 
21
21
  ```erb
@@ -24,7 +24,7 @@ In a view, use the Rails i18N.translate() method where you would like to display
24
24
 
25
25
  Visit the page in your browser, and a Copycat translation will be created for the key. Then visit `/copycat_translations` in your browser, log in with the username and password generated in `config/initializers/copycat.rb`, and you can edit the value of that token.
26
26
 
27
- ## Rails i18N API ##
27
+ ## Rails i18n API ##
28
28
 
29
29
  You can read about the Rails internationalization framework [here](http://guides.rubyonrails.org/i18n.html).
30
30
 
@@ -53,7 +53,9 @@ end
53
53
  ```
54
54
 
55
55
  ## Logging ##
56
- Because Copycat does a SQL query for each token, it can produce a lot of noise in the log output. Therefore by default the logger is disabled for the Copycat ActiveRecord class. It can be enabled with the environment variable COPYCAT_DEBUG, e.g.
56
+ Because Copycat does a SQL query for each token, it can produce a lot of noise in the log output.
57
+ Therefore by default the logger is disabled for the Copycat ActiveRecord class.
58
+ It can be enabled with the environment variable COPYCAT_DEBUG, e.g.
57
59
 
58
60
  ```bash
59
61
  COPYCAT_DEBUG=1 rails s
@@ -10,10 +10,12 @@ class CopycatTranslationsController < ActionController::Base
10
10
  query = query.where(locale: params[:locale]) unless params[:locale].blank?
11
11
 
12
12
  if params.has_key?(:search)
13
- if (search = params[:search]).blank?
13
+ if params[:search].blank?
14
14
  @copycat_translations = query.all
15
15
  else
16
- @copycat_translations = query.where("key LIKE ? OR value LIKE ?", "%#{search}%", "%#{search}%")
16
+ key_like = CopycatTranslation.where_like(:key, params[:search])
17
+ value_like = CopycatTranslation.where_like(:value, params[:search])
18
+ @copycat_translations = query.where("#{key_like} OR #{value_like}")
17
19
  end
18
20
  else
19
21
  @copycat_translations = []
@@ -7,6 +7,10 @@ class CopycatTranslation < ActiveRecord::Base
7
7
  validates :key, :presence => true
8
8
  validates :locale, :presence => true
9
9
 
10
+ def self.where_like(col, pattern)
11
+ where(arel_table[col].matches("%#{pattern}%")).where_clauses.first
12
+ end
13
+
10
14
  module Serialize
11
15
 
12
16
  def import_yaml(yaml)
@@ -1,3 +1,3 @@
1
1
  module Copycat
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  Copycat.setup do |config|
2
- config.username = 'admin'
3
- config.password = 'password'
2
+ config.username = 'c993116'
3
+ config.password = '730eede'
4
4
  #config.route = 'copycat_translations'
5
5
  end
Binary file
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended to check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(:version => 20120407193855) do
14
+ ActiveRecord::Schema.define(:version => 20120320194234) do
15
15
 
16
16
  create_table "copycat_translations", :force => true do |t|
17
17
  t.string "locale"
Binary file
@@ -1,26 +1,1486 @@
1
-  (0.1ms) select sqlite_version(*)
2
-  (15.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
-  (0.0ms) PRAGMA index_list("schema_migrations")
4
-  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
- Migrating to CreateCopycatTranslations (20120407193855)
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-03-23 11:32:55 -0400
4
+ Processing by SiteController#index as HTML
5
+ CopycatTranslation Load (0.9ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.header' LIMIT 1
6
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.intro' LIMIT 1
7
+ Rendered site/index.html.erb within layouts/application (496.3ms)
8
+ Completed 200 OK in 513ms (Views: 72.5ms | ActiveRecord: 440.6ms)
9
+
10
+
11
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-23 11:32:56 -0400
12
+ Served asset /application.css - 200 OK (1ms)
13
+
14
+
15
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:32:59 -0400
16
+ Processing by CopycatTranslationsController#index as HTML
17
+ Filter chain halted as #<Proc:0x000001013bde48@/Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
18
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19
+
20
+
21
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:33:07 -0400
22
+ Processing by CopycatTranslationsController#index as HTML
23
+ Filter chain halted as #<Proc:0x000001013bde48@/Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
24
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
25
+
26
+
27
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:33:27 -0400
28
+ Processing by CopycatTranslationsController#index as HTML
29
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
30
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.8ms)
31
+ Compiled copycat_engine.css (0ms) (pid 23583)
32
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms)
33
+
34
+
35
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:33:27 -0400
36
+ Served asset /copycat_engine.css - 200 OK (1ms)
37
+
38
+
39
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:33:29 -0400
40
+ Processing by CopycatTranslationsController#index as HTML
41
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
42
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
43
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
44
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.3ms)
45
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.2ms)
46
+
47
+
48
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:33:31 -0400
49
+ Processing by CopycatTranslationsController#edit as HTML
50
+ Parameters: {"id"=>"1"}
51
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
52
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (3.3ms)
53
+ Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.2ms)
54
+
55
+
56
+ Started DELETE "/copycat_translations?id=1" for 127.0.0.1 at 2012-03-23 11:33:39 -0400
57
+
58
+ ActionController::RoutingError (No route matches [DELETE] "/copycat_translations"):
59
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
60
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
61
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
62
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
63
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
64
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
65
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
66
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
67
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
68
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
69
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
70
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
71
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
72
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
73
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
74
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
75
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
76
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
77
+
78
+
79
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
80
+
81
+
82
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:34:01 -0400
83
+ Processing by CopycatTranslationsController#edit as HTML
84
+ Parameters: {"id"=>"1"}
85
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
86
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.6ms)
87
+ Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.2ms)
88
+
89
+
90
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:34:01 -0400
91
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
92
+
93
+
94
+ Started DELETE "/copycat_translations?id=1" for 127.0.0.1 at 2012-03-23 11:34:02 -0400
95
+
96
+ ActionController::RoutingError (No route matches [DELETE] "/copycat_translations"):
97
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
98
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
99
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
100
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
101
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
102
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
103
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
104
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
105
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
106
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
107
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
108
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
109
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
110
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
111
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
112
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
113
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
114
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
115
+
116
+
117
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
118
+
119
+
120
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:34:11 -0400
121
+ Processing by CopycatTranslationsController#edit as HTML
122
+ Parameters: {"id"=>"1"}
123
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
124
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.8ms)
125
+ Completed 200 OK in 25ms (Views: 5.9ms | ActiveRecord: 0.1ms)
126
+
127
+
128
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:34:11 -0400
129
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
130
+
131
+
132
+ Started DELETE "/copycat_translations?id=1" for 127.0.0.1 at 2012-03-23 11:34:12 -0400
133
+
134
+ ActionController::RoutingError (No route matches [DELETE] "/copycat_translations"):
135
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
136
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
137
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
138
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
139
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
140
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
141
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
142
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
143
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
144
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
145
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
146
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
147
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
148
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
149
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
150
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
151
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
152
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
153
+
154
+
155
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
156
+
157
+
158
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:34:29 -0400
159
+ Processing by CopycatTranslationsController#edit as HTML
160
+ Parameters: {"id"=>"1"}
161
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
162
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (4.6ms)
163
+ Completed 200 OK in 24ms (Views: 17.1ms | ActiveRecord: 0.2ms)
164
+
165
+
166
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:34:29 -0400
167
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
168
+
169
+
170
+ Started DELETE "/copycat_translations?id=1" for 127.0.0.1 at 2012-03-23 11:34:30 -0400
171
+
172
+ ActionController::RoutingError (No route matches [DELETE] "/copycat_translations"):
173
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
174
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
175
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
176
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
177
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
178
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
179
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
180
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
181
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
182
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
183
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
184
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
185
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
186
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
187
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
188
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
189
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
190
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
191
+
192
+
193
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
194
+
195
+
196
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:34:43 -0400
197
+ Processing by CopycatTranslationsController#edit as HTML
198
+ Parameters: {"id"=>"1"}
199
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
200
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (4.6ms)
201
+ Completed 200 OK in 24ms (Views: 16.7ms | ActiveRecord: 0.2ms)
202
+
203
+
204
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:34:43 -0400
205
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
206
+
207
+
208
+ Started DELETE "/copycat_translations?id=1" for 127.0.0.1 at 2012-03-23 11:34:44 -0400
209
+
210
+ ActionController::RoutingError (No route matches [DELETE] "/copycat_translations"):
211
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
212
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
213
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
214
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
215
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
216
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
217
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
218
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
219
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
220
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
221
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
222
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
223
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
224
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
225
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
226
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
227
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
228
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
229
+
230
+
231
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
232
+
233
+
234
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:37:20 -0400
235
+ Processing by CopycatTranslationsController#edit as HTML
236
+ Parameters: {"id"=>"1"}
237
+ CopycatTranslation Load (0.6ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
238
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (5.3ms)
239
+ Completed 200 OK in 25ms (Views: 18.0ms | ActiveRecord: 0.6ms)
240
+
241
+
242
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:37:20 -0400
243
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
244
+
245
+
246
+ Started DELETE "/copycat_translations/1" for 127.0.0.1 at 2012-03-23 11:37:22 -0400
247
+
248
+ AbstractController::ActionNotFound (The action 'destroy' could not be found for CopycatTranslationsController):
249
+ actionpack (3.2.2) lib/abstract_controller/base.rb:116:in `process'
250
+ actionpack (3.2.2) lib/abstract_controller/rendering.rb:45:in `process'
251
+ actionpack (3.2.2) lib/action_controller/metal.rb:203:in `dispatch'
252
+ actionpack (3.2.2) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
253
+ actionpack (3.2.2) lib/action_controller/metal.rb:246:in `block in action'
254
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `call'
255
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `dispatch'
256
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:30:in `call'
257
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
258
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
259
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
260
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:594:in `call'
261
+ actionpack (3.2.2) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
262
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
263
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
264
+ actionpack (3.2.2) lib/action_dispatch/middleware/head.rb:14:in `call'
265
+ actionpack (3.2.2) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
266
+ actionpack (3.2.2) lib/action_dispatch/middleware/flash.rb:242:in `call'
267
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
268
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
269
+ actionpack (3.2.2) lib/action_dispatch/middleware/cookies.rb:338:in `call'
270
+ activerecord (3.2.2) lib/active_record/query_cache.rb:64:in `call'
271
+ activerecord (3.2.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
272
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
273
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `_run__4039087940224303884__call__4439174916232363256__callbacks'
274
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `__run_callback'
275
+ activesupport (3.2.2) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
276
+ activesupport (3.2.2) lib/active_support/callbacks.rb:81:in `run_callbacks'
277
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
278
+ actionpack (3.2.2) lib/action_dispatch/middleware/reloader.rb:65:in `call'
279
+ actionpack (3.2.2) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
280
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
281
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
282
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
283
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
284
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
285
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
286
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
287
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
288
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
289
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
290
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
291
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
292
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
293
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
294
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
295
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
296
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
297
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
298
+
299
+
300
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
301
+
302
+
303
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:39:14 -0400
304
+ Processing by CopycatTranslationsController#edit as HTML
305
+ Parameters: {"id"=>"1"}
306
+ CopycatTranslation Load (0.5ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
307
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.3ms)
308
+ Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.5ms)
309
+
310
+
311
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:39:14 -0400
312
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
313
+
314
+
315
+ Started DELETE "/copycat_translations/1" for 127.0.0.1 at 2012-03-23 11:39:16 -0400
316
+ Processing by CopycatTranslationsController#destroy as HTML
317
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "id"=>"1"}
318
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
319
+ Completed 500 Internal Server Error in 1ms
320
+
321
+ NoMethodError (undefined method `destroy!' for #<CopycatTranslation:0x00000103e13f30>):
322
+ activemodel (3.2.2) lib/active_model/attribute_methods.rb:407:in `method_missing'
323
+ activerecord (3.2.2) lib/active_record/attribute_methods.rb:148:in `method_missing'
324
+ /vermonster/copycat/app/controllers/copycat_translations_controller.rb:61:in `destroy'
325
+ actionpack (3.2.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
326
+ actionpack (3.2.2) lib/abstract_controller/base.rb:167:in `process_action'
327
+ actionpack (3.2.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
328
+ actionpack (3.2.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
329
+ activesupport (3.2.2) lib/active_support/callbacks.rb:414:in `_run__1964395538400995597__process_action__4588774934067441872__callbacks'
330
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `__run_callback'
331
+ activesupport (3.2.2) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
332
+ activesupport (3.2.2) lib/active_support/callbacks.rb:81:in `run_callbacks'
333
+ actionpack (3.2.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
334
+ actionpack (3.2.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
335
+ actionpack (3.2.2) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
336
+ activesupport (3.2.2) lib/active_support/notifications.rb:123:in `block in instrument'
337
+ activesupport (3.2.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
338
+ activesupport (3.2.2) lib/active_support/notifications.rb:123:in `instrument'
339
+ actionpack (3.2.2) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
340
+ actionpack (3.2.2) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
341
+ activerecord (3.2.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
342
+ actionpack (3.2.2) lib/abstract_controller/base.rb:121:in `process'
343
+ actionpack (3.2.2) lib/abstract_controller/rendering.rb:45:in `process'
344
+ actionpack (3.2.2) lib/action_controller/metal.rb:203:in `dispatch'
345
+ actionpack (3.2.2) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
346
+ actionpack (3.2.2) lib/action_controller/metal.rb:246:in `block in action'
347
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `call'
348
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:67:in `dispatch'
349
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:30:in `call'
350
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
351
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
352
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
353
+ actionpack (3.2.2) lib/action_dispatch/routing/route_set.rb:594:in `call'
354
+ actionpack (3.2.2) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
355
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
356
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
357
+ actionpack (3.2.2) lib/action_dispatch/middleware/head.rb:14:in `call'
358
+ actionpack (3.2.2) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
359
+ actionpack (3.2.2) lib/action_dispatch/middleware/flash.rb:242:in `call'
360
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
361
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
362
+ actionpack (3.2.2) lib/action_dispatch/middleware/cookies.rb:338:in `call'
363
+ activerecord (3.2.2) lib/active_record/query_cache.rb:64:in `call'
364
+ activerecord (3.2.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
365
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
366
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `_run__4039087940224303884__call__4439174916232363256__callbacks'
367
+ activesupport (3.2.2) lib/active_support/callbacks.rb:405:in `__run_callback'
368
+ activesupport (3.2.2) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
369
+ activesupport (3.2.2) lib/active_support/callbacks.rb:81:in `run_callbacks'
370
+ actionpack (3.2.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
371
+ actionpack (3.2.2) lib/action_dispatch/middleware/reloader.rb:65:in `call'
372
+ actionpack (3.2.2) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
373
+ actionpack (3.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
374
+ actionpack (3.2.2) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
375
+ railties (3.2.2) lib/rails/rack/logger.rb:26:in `call_app'
376
+ railties (3.2.2) lib/rails/rack/logger.rb:16:in `call'
377
+ actionpack (3.2.2) lib/action_dispatch/middleware/request_id.rb:22:in `call'
378
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
379
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
380
+ activesupport (3.2.2) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
381
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
382
+ actionpack (3.2.2) lib/action_dispatch/middleware/static.rb:61:in `call'
383
+ railties (3.2.2) lib/rails/engine.rb:479:in `call'
384
+ railties (3.2.2) lib/rails/application.rb:220:in `call'
385
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
386
+ railties (3.2.2) lib/rails/rack/log_tailer.rb:14:in `call'
387
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
388
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
389
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
390
+ /Users/sjm/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
391
+
392
+
393
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
394
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
395
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.2ms)
396
+
397
+
398
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:39:24 -0400
399
+ Processing by CopycatTranslationsController#edit as HTML
400
+ Parameters: {"id"=>"1"}
401
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
402
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.6ms)
403
+ Completed 200 OK in 12ms (Views: 5.3ms | ActiveRecord: 0.2ms)
404
+
405
+
406
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:39:24 -0400
407
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
408
+
409
+
410
+ Started GET "/copycat_translations/1/edit" for 127.0.0.1 at 2012-03-23 11:39:42 -0400
411
+ Processing by CopycatTranslationsController#edit as HTML
412
+ Parameters: {"id"=>"1"}
413
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
414
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.2ms)
415
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
416
+
417
+
418
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:39:42 -0400
419
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
420
+
421
+
422
+ Started DELETE "/copycat_translations/1" for 127.0.0.1 at 2012-03-23 11:39:45 -0400
423
+ Processing by CopycatTranslationsController#destroy as HTML
424
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "id"=>"1"}
425
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "1"]]
426
+  (0.1ms) begin transaction
427
+ SQL (38.1ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 1]]
428
+  (1.2ms) commit transaction
429
+ Redirected to http://localhost:3000/copycat_translations
430
+ Completed 302 Found in 42ms (ActiveRecord: 39.5ms)
431
+
432
+
433
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:39:45 -0400
434
+ Processing by CopycatTranslationsController#index as HTML
435
+ CopycatTranslation Load (0.2ms) SELECT distinct locale FROM "copycat_translations"
436
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.8ms)
437
+ Completed 200 OK in 30ms (Views: 4.6ms | ActiveRecord: 0.2ms)
438
+
439
+
440
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:39:45 -0400
441
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
442
+
443
+
444
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:39:50 -0400
445
+ Processing by CopycatTranslationsController#index as HTML
446
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
447
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
448
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
449
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.1ms)
450
+ Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.2ms)
451
+
452
+
453
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:39:50 -0400
454
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
455
+
456
+
457
+ Started GET "/" for 127.0.0.1 at 2012-03-23 11:40:00 -0400
458
+ Processing by SiteController#index as HTML
459
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.header' LIMIT 1
460
+  (0.1ms) begin transaction
461
+ SQL (2.0ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 23 Mar 2012 15:40:00 UTC +00:00], ["key", "site.index.header"], ["locale", :en], ["updated_at", Fri, 23 Mar 2012 15:40:00 UTC +00:00], ["value", "The Header"]]
462
+  (1.1ms) commit transaction
463
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.intro' LIMIT 1
464
+ Rendered site/index.html.erb within layouts/application (13.4ms)
465
+ Completed 200 OK in 20ms (Views: 16.2ms | ActiveRecord: 3.4ms)
466
+
467
+
468
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-23 11:40:00 -0400
469
+ Served asset /application.css - 304 Not Modified (2ms)
470
+
471
+
472
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:40:03 -0400
473
+ Processing by CopycatTranslationsController#index as HTML
474
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
475
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
476
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
477
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.6ms)
478
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.3ms)
479
+
480
+
481
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:40:03 -0400
482
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
483
+
484
+
485
+ Started GET "/copycat_translations/2/edit" for 127.0.0.1 at 2012-03-23 11:40:06 -0400
486
+ Processing by CopycatTranslationsController#edit as HTML
487
+ Parameters: {"id"=>"2"}
488
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "2"]]
489
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (1.7ms)
490
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.1ms)
491
+
492
+
493
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:40:06 -0400
494
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
495
+
496
+
497
+ Started DELETE "/copycat_translations/2" for 127.0.0.1 at 2012-03-23 11:40:08 -0400
498
+ Processing by CopycatTranslationsController#destroy as HTML
499
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "id"=>"2"}
500
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "2"]]
501
+  (0.1ms) begin transaction
502
+ SQL (0.3ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 2]]
503
+  (2.3ms) commit transaction
504
+ Redirected to http://localhost:3000/copycat_translations
505
+ Completed 302 Found in 5ms (ActiveRecord: 2.8ms)
506
+
507
+
508
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:40:08 -0400
509
+ Processing by CopycatTranslationsController#index as HTML
510
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
511
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
512
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.1ms)
513
+
514
+
515
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:40:08 -0400
516
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
517
+
518
+
519
+ Started GET "/" for 127.0.0.1 at 2012-03-23 11:42:37 -0400
520
+ Processing by SiteController#index as HTML
521
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.header' LIMIT 1
522
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.intro' LIMIT 1
7
523
   (0.0ms) begin transaction
8
-  (0.2ms) CREATE TABLE "copycat_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
-  (0.0ms) PRAGMA index_list("copycat_translations")
10
-  (0.2ms) CREATE UNIQUE INDEX "index_copycat_translations_on_locale_and_key" ON "copycat_translations" ("locale", "key")
11
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120407193855')
12
-  (4.1ms) commit transaction
13
-  (0.2ms) select sqlite_version(*)
14
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
-  (0.0ms) PRAGMA index_list("copycat_translations")
16
-  (0.0ms) PRAGMA index_info('index_copycat_translations_on_locale_and_key')
17
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
18
-  (0.2ms) select sqlite_version(*)
19
-  (7.5ms) CREATE TABLE "copycat_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
20
-  (0.1ms) PRAGMA index_list("copycat_translations")
21
-  (2.2ms) CREATE UNIQUE INDEX "index_copycat_translations_on_locale_and_key" ON "copycat_translations" ("locale", "key")
22
-  (4.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
23
-  (0.0ms) PRAGMA index_list("schema_migrations")
24
-  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
-  (0.1ms) SELECT version FROM "schema_migrations"
26
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120407193855')
524
+ SQL (0.4ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 23 Mar 2012 15:42:37 UTC +00:00], ["key", "site.index.intro"], ["locale", :en], ["updated_at", Fri, 23 Mar 2012 15:42:37 UTC +00:00], ["value", nil]]
525
+  (1.8ms) commit transaction
526
+ Rendered site/index.html.erb within layouts/application (4.9ms)
527
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 2.6ms)
528
+
529
+
530
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-23 11:42:37 -0400
531
+ Served asset /application.css - 304 Not Modified (0ms)
532
+
533
+
534
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:42:39 -0400
535
+ Processing by CopycatTranslationsController#index as HTML
536
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
537
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
538
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
539
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (20.6ms)
540
+ Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.2ms)
541
+
542
+
543
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:42:39 -0400
544
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
545
+
546
+
547
+ Started GET "/copycat_translations/3/edit" for 127.0.0.1 at 2012-03-23 11:42:40 -0400
548
+ Processing by CopycatTranslationsController#edit as HTML
549
+ Parameters: {"id"=>"3"}
550
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "3"]]
551
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.4ms)
552
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
553
+
554
+
555
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:42:40 -0400
556
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
557
+
558
+
559
+ Started DELETE "/copycat_translations/3?confirm=true" for 127.0.0.1 at 2012-03-23 11:42:41 -0400
560
+ Processing by CopycatTranslationsController#destroy as HTML
561
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "confirm"=>"true", "id"=>"3"}
562
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "3"]]
563
+  (0.1ms) begin transaction
564
+ SQL (0.3ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 3]]
565
+  (0.7ms) commit transaction
566
+ Redirected to http://localhost:3000/copycat_translations
567
+ Completed 302 Found in 3ms (ActiveRecord: 1.1ms)
568
+
569
+
570
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:42:41 -0400
571
+ Processing by CopycatTranslationsController#index as HTML
572
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
573
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
574
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
575
+
576
+
577
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:42:41 -0400
578
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
579
+
580
+
581
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:43:07 -0400
582
+ Processing by CopycatTranslationsController#index as HTML
583
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
584
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
585
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
586
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.9ms)
587
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.2ms)
588
+
589
+
590
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:43:07 -0400
591
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
592
+
593
+
594
+ Started GET "/copycat_translations/4/edit" for 127.0.0.1 at 2012-03-23 11:43:08 -0400
595
+ Processing by CopycatTranslationsController#edit as HTML
596
+ Parameters: {"id"=>"4"}
597
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "4"]]
598
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.4ms)
599
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
600
+
601
+
602
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:43:08 -0400
603
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
604
+
605
+
606
+ Started DELETE "/copycat_translations/4?confirm=Delete+this+translation%3F" for 127.0.0.1 at 2012-03-23 11:43:09 -0400
607
+ Processing by CopycatTranslationsController#destroy as HTML
608
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "confirm"=>"Delete this translation?", "id"=>"4"}
609
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "4"]]
610
+  (0.1ms) begin transaction
611
+ SQL (0.2ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 4]]
612
+  (0.9ms) commit transaction
613
+ Redirected to http://localhost:3000/copycat_translations
614
+ Completed 302 Found in 3ms (ActiveRecord: 1.3ms)
615
+
616
+
617
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:43:09 -0400
618
+ Processing by CopycatTranslationsController#index as HTML
619
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
620
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
621
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
622
+
623
+
624
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:43:09 -0400
625
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
626
+
627
+
628
+ Started GET "/" for 127.0.0.1 at 2012-03-23 11:43:11 -0400
629
+ Processing by SiteController#index as HTML
630
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.header' LIMIT 1
631
+  (0.0ms) begin transaction
632
+ SQL (0.3ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 23 Mar 2012 15:43:11 UTC +00:00], ["key", "site.index.header"], ["locale", :en], ["updated_at", Fri, 23 Mar 2012 15:43:11 UTC +00:00], ["value", "The Header"]]
633
+  (1.2ms) commit transaction
634
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.intro' LIMIT 1
635
+  (0.0ms) begin transaction
636
+ SQL (0.2ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 23 Mar 2012 15:43:11 UTC +00:00], ["key", "site.index.intro"], ["locale", :en], ["updated_at", Fri, 23 Mar 2012 15:43:11 UTC +00:00], ["value", nil]]
637
+  (1.0ms) commit transaction
638
+ Rendered site/index.html.erb within layouts/application (6.0ms)
639
+ Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 3.0ms)
640
+
641
+
642
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-23 11:43:11 -0400
643
+ Served asset /application.css - 304 Not Modified (0ms)
644
+
645
+
646
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:43:41 -0400
647
+ Processing by CopycatTranslationsController#index as HTML
648
+ Parameters: {"utf8"=>"✓", "locale"=>"", "search"=>"", "commit"=>"Search"}
649
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" 
650
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
651
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.7ms)
652
+ Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.3ms)
653
+
654
+
655
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:43:41 -0400
656
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
657
+
658
+
659
+ Started GET "/copycat_translations/5/edit" for 127.0.0.1 at 2012-03-23 11:43:42 -0400
660
+ Processing by CopycatTranslationsController#edit as HTML
661
+ Parameters: {"id"=>"5"}
662
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "5"]]
663
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.6ms)
664
+ Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.1ms)
665
+
666
+
667
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:43:42 -0400
668
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
669
+
670
+
671
+ Started DELETE "/copycat_translations/5" for 127.0.0.1 at 2012-03-23 11:43:43 -0400
672
+ Processing by CopycatTranslationsController#destroy as HTML
673
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "id"=>"5"}
674
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "5"]]
675
+  (0.0ms) begin transaction
676
+ SQL (0.2ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 5]]
677
+  (1.8ms) commit transaction
678
+ Redirected to http://localhost:3000/copycat_translations
679
+ Completed 302 Found in 4ms (ActiveRecord: 2.1ms)
680
+
681
+
682
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:43:43 -0400
683
+ Processing by CopycatTranslationsController#index as HTML
684
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
685
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
686
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.1ms)
687
+
688
+
689
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:43:43 -0400
690
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
691
+
692
+
693
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:49:10 -0400
694
+ Processing by CopycatTranslationsController#index as HTML
695
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
696
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
697
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
698
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (3.4ms)
699
+ Completed 200 OK in 28ms (Views: 15.6ms | ActiveRecord: 0.3ms)
700
+
701
+
702
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:49:11 -0400
703
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
704
+
705
+
706
+ Started GET "/copycat_translations/6/edit" for 127.0.0.1 at 2012-03-23 11:49:12 -0400
707
+ Processing by CopycatTranslationsController#edit as HTML
708
+ Parameters: {"id"=>"6"}
709
+ CopycatTranslation Load (0.3ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "6"]]
710
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (3.2ms)
711
+ Completed 200 OK in 8ms (Views: 5.7ms | ActiveRecord: 0.3ms)
712
+
713
+
714
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:49:12 -0400
715
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
716
+
717
+
718
+ Started GET "/copycat_translations/6/edit" for 127.0.0.1 at 2012-03-23 11:49:59 -0400
719
+ Processing by CopycatTranslationsController#edit as HTML
720
+ Parameters: {"id"=>"6"}
721
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "6"]]
722
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (1.9ms)
723
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
724
+
725
+
726
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:49:59 -0400
727
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
728
+
729
+
730
+ Started DELETE "/copycat_translations/6" for 127.0.0.1 at 2012-03-23 11:50:03 -0400
731
+ Processing by CopycatTranslationsController#destroy as HTML
732
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "id"=>"6"}
733
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "6"]]
734
+  (0.0ms) begin transaction
735
+ SQL (4.6ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 6]]
736
+  (0.9ms) commit transaction
737
+ Redirected to http://localhost:3000/copycat_translations
738
+ Completed 302 Found in 8ms (ActiveRecord: 5.6ms)
739
+
740
+
741
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:50:03 -0400
742
+ Processing by CopycatTranslationsController#index as HTML
743
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
744
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.8ms)
745
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.1ms)
746
+
747
+
748
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:50:03 -0400
749
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
750
+
751
+
752
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:50:04 -0400
753
+ Processing by CopycatTranslationsController#index as HTML
754
+ Parameters: {"utf8"=>"✓", "locale"=>"", "search"=>"", "commit"=>"Search"}
755
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations"
756
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
757
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
758
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.2ms)
759
+
760
+
761
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:50:04 -0400
762
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
763
+
764
+
765
+ Started GET "/" for 127.0.0.1 at 2012-03-23 11:50:06 -0400
766
+ Processing by SiteController#index as HTML
767
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.header' LIMIT 1
768
+  (0.1ms) begin transaction
769
+ SQL (1.6ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 23 Mar 2012 15:50:07 UTC +00:00], ["key", "site.index.header"], ["locale", :en], ["updated_at", Fri, 23 Mar 2012 15:50:07 UTC +00:00], ["value", "The Header"]]
770
+  (0.6ms) commit transaction
771
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.intro' LIMIT 1
772
+  (0.0ms) begin transaction
773
+ SQL (0.3ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 23 Mar 2012 15:50:07 UTC +00:00], ["key", "site.index.intro"], ["locale", :en], ["updated_at", Fri, 23 Mar 2012 15:50:07 UTC +00:00], ["value", nil]]
774
+  (0.8ms) commit transaction
775
+ Rendered site/index.html.erb within layouts/application (17.2ms)
776
+ Completed 200 OK in 23ms (Views: 18.7ms | ActiveRecord: 3.7ms)
777
+
778
+
779
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-23 11:50:07 -0400
780
+ Served asset /application.css - 304 Not Modified (1ms)
781
+
782
+
783
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:50:41 -0400
784
+ Processing by CopycatTranslationsController#index as HTML
785
+ Parameters: {"utf8"=>"✓", "locale"=>"", "search"=>"", "commit"=>"Search"}
786
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations"
787
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
788
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.3ms)
789
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
790
+
791
+
792
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:50:41 -0400
793
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
794
+
795
+
796
+ Started GET "/copycat_translations/7/edit" for 127.0.0.1 at 2012-03-23 11:50:42 -0400
797
+ Processing by CopycatTranslationsController#edit as HTML
798
+ Parameters: {"id"=>"7"}
799
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "7"]]
800
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.6ms)
801
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
802
+
803
+
804
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:50:42 -0400
805
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
806
+
807
+
808
+ Started GET "/copycat_translations/7/edit" for 127.0.0.1 at 2012-03-23 11:51:39 -0400
809
+ Processing by CopycatTranslationsController#edit as HTML
810
+ Parameters: {"id"=>"7"}
811
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "7"]]
812
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.4ms)
813
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
814
+
815
+
816
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:51:39 -0400
817
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
818
+
819
+
820
+ Started DELETE "/copycat_translations/7" for 127.0.0.1 at 2012-03-23 11:51:44 -0400
821
+ Processing by CopycatTranslationsController#destroy as HTML
822
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "id"=>"7"}
823
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "7"]]
824
+  (0.1ms) begin transaction
825
+ SQL (1.9ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 7]]
826
+  (1.0ms) commit transaction
827
+ Redirected to http://localhost:3000/copycat_translations
828
+ Completed 302 Found in 6ms (ActiveRecord: 3.2ms)
829
+
830
+
831
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 11:51:44 -0400
832
+ Processing by CopycatTranslationsController#index as HTML
833
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
834
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
835
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
836
+
837
+
838
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:51:44 -0400
839
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
840
+
841
+
842
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 11:51:46 -0400
843
+ Processing by CopycatTranslationsController#index as HTML
844
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
845
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
846
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
847
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.0ms)
848
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
849
+
850
+
851
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:51:46 -0400
852
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
853
+
854
+
855
+ Started GET "/copycat_translations/8/edit" for 127.0.0.1 at 2012-03-23 11:51:51 -0400
856
+ Processing by CopycatTranslationsController#edit as HTML
857
+ Parameters: {"id"=>"8"}
858
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
859
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (1.6ms)
860
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
861
+
862
+
863
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:51:51 -0400
864
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
865
+
866
+
867
+ Started GET "/copycat_translations/help" for 127.0.0.1 at 2012-03-23 11:53:35 -0400
868
+ Processing by CopycatTranslationsController#help as HTML
869
+ Rendered /vermonster/copycat/app/views/copycat_translations/help.html.erb within layouts/copycat (0.3ms)
870
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
871
+
872
+
873
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:53:35 -0400
874
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
875
+
876
+
877
+ Started GET "/copycat_translations/8/edit" for 127.0.0.1 at 2012-03-23 11:55:07 -0400
878
+ Processing by CopycatTranslationsController#edit as HTML
879
+ Parameters: {"id"=>"8"}
880
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
881
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.5ms)
882
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
883
+
884
+
885
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:55:07 -0400
886
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
887
+
888
+
889
+ Started GET "/copycat_translations/8/edit" for 127.0.0.1 at 2012-03-23 11:55:23 -0400
890
+ Processing by CopycatTranslationsController#edit as HTML
891
+ Parameters: {"id"=>"8"}
892
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
893
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.4ms)
894
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
895
+
896
+
897
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:55:23 -0400
898
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
899
+
900
+
901
+ Started GET "/copycat_translations/8/edit" for 127.0.0.1 at 2012-03-23 11:55:46 -0400
902
+ Processing by CopycatTranslationsController#edit as HTML
903
+ Parameters: {"id"=>"8"}
904
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
905
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.1ms)
906
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.1ms)
907
+
908
+
909
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:55:46 -0400
910
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
911
+
912
+
913
+ Started GET "/copycat_translations/8/edit" for 127.0.0.1 at 2012-03-23 11:58:59 -0400
914
+ Processing by CopycatTranslationsController#edit as HTML
915
+ Parameters: {"id"=>"8"}
916
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
917
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (1.5ms)
918
+ Compiled copycat_engine.css (0ms) (pid 23964)
919
+ Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.1ms)
920
+
921
+
922
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 11:59:00 -0400
923
+ Served asset /copycat_engine.css - 200 OK (1ms)
924
+
925
+
926
+ Started GET "/copycat_translations/8/edit" for 127.0.0.1 at 2012-03-23 12:00:08 -0400
927
+ Processing by CopycatTranslationsController#edit as HTML
928
+ Parameters: {"id"=>"8"}
929
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
930
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (1.5ms)
931
+ Compiled copycat_engine.css (0ms) (pid 23964)
932
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.1ms)
933
+
934
+
935
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:00:08 -0400
936
+ Served asset /copycat_engine.css - 200 OK (1ms)
937
+
938
+
939
+ Started GET "/" for 127.0.0.1 at 2012-03-23 12:06:15 -0400
940
+ Processing by SiteController#index as HTML
941
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.header' LIMIT 1
942
+  (0.0ms) begin transaction
943
+ SQL (1.1ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 23 Mar 2012 16:06:15 UTC +00:00], ["key", "site.index.header"], ["locale", :en], ["updated_at", Fri, 23 Mar 2012 16:06:15 UTC +00:00], ["value", "The Header"]]
944
+  (1.0ms) commit transaction
945
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.intro' LIMIT 1
946
+ Rendered site/index.html.erb within layouts/application (4.6ms)
947
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 2.4ms)
948
+
949
+
950
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-23 12:06:15 -0400
951
+ Served asset /application.css - 304 Not Modified (0ms)
952
+
953
+
954
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 12:06:17 -0400
955
+ Processing by CopycatTranslationsController#index as HTML
956
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
957
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
958
+ Compiled copycat_engine.css (0ms) (pid 23964)
959
+ Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms)
960
+
961
+
962
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:06:17 -0400
963
+ Served asset /copycat_engine.css - 200 OK (2ms)
964
+
965
+
966
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 12:06:18 -0400
967
+ Processing by CopycatTranslationsController#index as HTML
968
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
969
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
970
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
971
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.7ms)
972
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
973
+
974
+
975
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:06:18 -0400
976
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
977
+
978
+
979
+ Started GET "/copycat_translations/8/edit" for 127.0.0.1 at 2012-03-23 12:06:20 -0400
980
+ Processing by CopycatTranslationsController#edit as HTML
981
+ Parameters: {"id"=>"8"}
982
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
983
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (21.9ms)
984
+ Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.1ms)
985
+
986
+
987
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:06:20 -0400
988
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
989
+
990
+
991
+ Started DELETE "/copycat_translations/8" for 127.0.0.1 at 2012-03-23 12:07:06 -0400
992
+ Processing by CopycatTranslationsController#destroy as HTML
993
+ Parameters: {"authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "id"=>"8"}
994
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "8"]]
995
+  (0.1ms) begin transaction
996
+ SQL (0.2ms) DELETE FROM "copycat_translations" WHERE "copycat_translations"."id" = ? [["id", 8]]
997
+  (0.9ms) commit transaction
998
+ Redirected to http://localhost:3000/copycat_translations
999
+ Completed 302 Found in 3ms (ActiveRecord: 1.2ms)
1000
+
1001
+
1002
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 12:07:06 -0400
1003
+ Processing by CopycatTranslationsController#index as HTML
1004
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
1005
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.8ms)
1006
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
1007
+
1008
+
1009
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:07:06 -0400
1010
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1011
+
1012
+
1013
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 12:07:08 -0400
1014
+ Processing by CopycatTranslationsController#index as HTML
1015
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
1016
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
1017
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
1018
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.7ms)
1019
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.3ms)
1020
+
1021
+
1022
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:07:08 -0400
1023
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1024
+
1025
+
1026
+ Started GET "/copycat_translations/9/edit" for 127.0.0.1 at 2012-03-23 12:09:32 -0400
1027
+ Processing by CopycatTranslationsController#edit as HTML
1028
+ Parameters: {"id"=>"9"}
1029
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "9"]]
1030
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (2.2ms)
1031
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
1032
+
1033
+
1034
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:09:32 -0400
1035
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1036
+
1037
+
1038
+ Started PUT "/copycat_translations/9" for 127.0.0.1 at 2012-03-23 12:21:41 -0400
1039
+ Processing by CopycatTranslationsController#update as HTML
1040
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "copycat_translation"=>{"value"=>"The Header"}, "commit"=>"Update", "id"=>"9"}
1041
+ CopycatTranslation Load (0.6ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "9"]]
1042
+  (0.0ms) begin transaction
1043
+  (0.0ms) commit transaction
1044
+ Redirected to http://localhost:3000/copycat_translations
1045
+ Completed 302 Found in 8ms (ActiveRecord: 0.7ms)
1046
+
1047
+
1048
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 12:21:41 -0400
1049
+ Processing by CopycatTranslationsController#index as HTML
1050
+ CopycatTranslation Load (0.2ms) SELECT distinct locale FROM "copycat_translations" 
1051
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.9ms)
1052
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1053
+
1054
+
1055
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:21:41 -0400
1056
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1057
+
1058
+
1059
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 12:21:50 -0400
1060
+ Processing by CopycatTranslationsController#index as HTML
1061
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
1062
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
1063
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
1064
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.9ms)
1065
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.2ms)
1066
+
1067
+
1068
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:21:50 -0400
1069
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1070
+
1071
+
1072
+ Started GET "/copycat_translations/9/edit" for 127.0.0.1 at 2012-03-23 12:23:33 -0400
1073
+ Processing by CopycatTranslationsController#edit as HTML
1074
+ Parameters: {"id"=>"9"}
1075
+ CopycatTranslation Load (0.8ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "9"]]
1076
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (3.8ms)
1077
+ Completed 200 OK in 43ms (Views: 8.4ms | ActiveRecord: 0.8ms)
1078
+
1079
+
1080
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:23:33 -0400
1081
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1082
+
1083
+
1084
+ Started PUT "/copycat_translations/9" for 127.0.0.1 at 2012-03-23 12:23:34 -0400
1085
+ Processing by CopycatTranslationsController#update as HTML
1086
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "copycat_translation"=>{"value"=>"The Header"}, "commit"=>"Update", "id"=>"9"}
1087
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "9"]]
1088
+  (0.1ms) begin transaction
1089
+  (0.0ms) commit transaction
1090
+ Redirected to http://localhost:3000/copycat_translations
1091
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
1092
+
1093
+
1094
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 12:23:34 -0400
1095
+ Processing by CopycatTranslationsController#index as HTML
1096
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
1097
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.9ms)
1098
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.1ms)
1099
+
1100
+
1101
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:23:34 -0400
1102
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1103
+
1104
+
1105
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-03-23 12:28:46 -0400
1106
+ Processing by CopycatTranslationsController#index as HTML
1107
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
1108
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
1109
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
1110
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.0ms)
1111
+ Compiled copycat_engine.css (0ms) (pid 23964)
1112
+ Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.2ms)
1113
+
1114
+
1115
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:28:46 -0400
1116
+ Served asset /copycat_engine.css - 200 OK (2ms)
1117
+
1118
+
1119
+ Started GET "/copycat_translations/9/edit" for 127.0.0.1 at 2012-03-23 12:28:47 -0400
1120
+ Processing by CopycatTranslationsController#edit as HTML
1121
+ Parameters: {"id"=>"9"}
1122
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "9"]]
1123
+ Rendered /vermonster/copycat/app/views/copycat_translations/edit.html.erb within layouts/copycat (1.6ms)
1124
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1125
+
1126
+
1127
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:28:47 -0400
1128
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1129
+
1130
+
1131
+ Started PUT "/copycat_translations/9" for 127.0.0.1 at 2012-03-23 12:28:48 -0400
1132
+ Processing by CopycatTranslationsController#update as HTML
1133
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1CqXWGMW/I4WJ6kXJNyhQmy55Ndufkg+cChbf/6o0Sg=", "copycat_translation"=>{"value"=>"The Header"}, "commit"=>"Update", "id"=>"9"}
1134
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."id" = ? LIMIT 1 [["id", "9"]]
1135
+  (0.1ms) begin transaction
1136
+  (0.0ms) commit transaction
1137
+ Redirected to http://localhost:3000/copycat_translations
1138
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
1139
+
1140
+
1141
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-23 12:28:48 -0400
1142
+ Processing by CopycatTranslationsController#index as HTML
1143
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
1144
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (0.7ms)
1145
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.1ms)
1146
+
1147
+
1148
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-23 12:28:48 -0400
1149
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1150
+
1151
+
1152
+ Started GET "/" for 127.0.0.1 at 2012-03-26 15:11:35 -0400
1153
+ Processing by SiteController#index as HTML
1154
+ CopycatTranslation Load (1.0ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.header' LIMIT 1
1155
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND "copycat_translations"."key" = 'site.index.intro' LIMIT 1
1156
+  (0.1ms) begin transaction
1157
+ SQL (3.4ms) INSERT INTO "copycat_translations" ("created_at", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 26 Mar 2012 19:11:35 UTC +00:00], ["key", "site.index.intro"], ["locale", :en], ["updated_at", Mon, 26 Mar 2012 19:11:35 UTC +00:00], ["value", nil]]
1158
+  (1.0ms) commit transaction
1159
+ Rendered site/index.html.erb within layouts/application (71.2ms)
1160
+ Completed 200 OK in 86ms (Views: 77.5ms | ActiveRecord: 8.0ms)
1161
+
1162
+
1163
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-26 15:11:35 -0400
1164
+ Served asset /application.css - 200 OK (1ms)
1165
+
1166
+
1167
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-26 15:11:47 -0400
1168
+ Processing by CopycatTranslationsController#index as HTML
1169
+ Filter chain halted as #<Proc:0x0000010157f010@/Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
1170
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
1171
+
1172
+
1173
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-26 15:12:29 -0400
1174
+ Processing by CopycatTranslationsController#index as HTML
1175
+ Filter chain halted as #<Proc:0x00000103377180@/Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
1176
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
1177
+
1178
+
1179
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-03-26 15:12:33 -0400
1180
+ Processing by CopycatTranslationsController#index as HTML
1181
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
1182
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (20.1ms)
1183
+ Completed 200 OK in 49ms (Views: 36.5ms | ActiveRecord: 0.1ms)
1184
+
1185
+
1186
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:12:33 -0400
1187
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
1188
+
1189
+
1190
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-03-26 15:12:35 -0400
1191
+ Processing by CopycatTranslationsController#import_export as HTML
1192
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (1.7ms)
1193
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1194
+
1195
+
1196
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:12:35 -0400
1197
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1198
+
1199
+
1200
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-03-26 15:12:37 -0400
1201
+ Processing by CopycatTranslationsController#upload as HTML
1202
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Mj1Qcja3mVicC0PXcW5UEYJeskdTdT3UWjWm4M27ZjA=", "commit"=>"Upload"}
1203
+
1204
+ NoMethodError
1205
+ undefined method `tempfile' for nil:NilClass
1206
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (0.8ms)
1207
+ Completed 400 Bad Request in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1208
+
1209
+
1210
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:12:37 -0400
1211
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1212
+
1213
+
1214
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-03-26 15:13:13 -0400
1215
+ Processing by CopycatTranslationsController#upload as HTML
1216
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Mj1Qcja3mVicC0PXcW5UEYJeskdTdT3UWjWm4M27ZjA=", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000103d314c8 @original_filename="x.yml", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"x.yml\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120326-13433-1fmkr9x>>, "commit"=>"Upload"}
1217
+ Completed 500 Internal Server Error in 3ms
1218
+
1219
+ SystemStackError (stack level too deep):
1220
+ actionpack (3.2.2) lib/action_dispatch/middleware/reloader.rb:70
1221
+
1222
+
1223
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1224
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1225
+ Rendered /Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
1226
+
1227
+
1228
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-03-26 15:15:27 -0400
1229
+ Processing by CopycatTranslationsController#upload as HTML
1230
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Mj1Qcja3mVicC0PXcW5UEYJeskdTdT3UWjWm4M27ZjA=", "file"=>#<ActionDispatch::Http::UploadedFile:0x0000010411b0c0 @original_filename="x.yml", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"x.yml\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120326-13517-nhf0eh>>, "commit"=>"Upload"}
1231
+
1232
+ SystemStackError
1233
+ stack level too deep
1234
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (2.6ms)
1235
+ Completed 400 Bad Request in 16ms (Views: 13.5ms | ActiveRecord: 0.0ms)
1236
+
1237
+
1238
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:15:27 -0400
1239
+ Served asset /copycat_engine.css - 200 OK (1ms)
1240
+
1241
+
1242
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-03-26 15:31:26 -0400
1243
+ Processing by CopycatTranslationsController#import_export as HTML
1244
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (2.6ms)
1245
+ Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms)
1246
+
1247
+
1248
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:31:26 -0400
1249
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
1250
+
1251
+
1252
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-03-26 15:31:47 -0400
1253
+ Processing by CopycatTranslationsController#upload as HTML
1254
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Mj1Qcja3mVicC0PXcW5UEYJeskdTdT3UWjWm4M27ZjA=", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000100bf5788 @original_filename="gollum.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"gollum.jpg\"\r\nContent-Type: image/jpeg\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120326-14172-1infn60>>, "commit"=>"Upload"}
1255
+
1256
+ Psych::SyntaxError
1257
+ (/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120326-14172-1infn60): couldn't parse YAML at line 0 column 0
1258
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (0.8ms)
1259
+ Completed 400 Bad Request in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1260
+
1261
+
1262
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:31:47 -0400
1263
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1264
+
1265
+
1266
+ Started POST "/copycat_translations/upload" for 127.0.0.1 at 2012-03-26 15:32:05 -0400
1267
+ Processing by CopycatTranslationsController#upload as HTML
1268
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Mj1Qcja3mVicC0PXcW5UEYJeskdTdT3UWjWm4M27ZjA=", "file"=>#<ActionDispatch::Http::UploadedFile:0x0000010475e950 @original_filename="gollum.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"gollum.jpg\"\r\nContent-Type: image/jpeg\r\n", @tempfile=#<File:/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120326-14172-1m26ey4>>, "commit"=>"Upload"}
1269
+
1270
+ Psych::SyntaxError
1271
+ (/var/folders/rn/rnXUYLOZH-mYuzcjL2v8Fk+++TI/-Tmp-/RackMultipart20120326-14172-1m26ey4): couldn't parse YAML at line 0 column 0
1272
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (0.7ms)
1273
+ Completed 400 Bad Request in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1274
+
1275
+
1276
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:32:05 -0400
1277
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1278
+
1279
+
1280
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-03-26 15:32:15 -0400
1281
+ Processing by CopycatTranslationsController#import_export as HTML
1282
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (0.9ms)
1283
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1284
+
1285
+
1286
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:32:15 -0400
1287
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1288
+
1289
+
1290
+ Started GET "/copycat_translations/import_export" for 127.0.0.1 at 2012-03-26 15:32:18 -0400
1291
+ Processing by CopycatTranslationsController#import_export as HTML
1292
+ Rendered /vermonster/copycat/app/views/copycat_translations/import_export.html.erb within layouts/copycat (1.0ms)
1293
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1294
+
1295
+
1296
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-03-26 15:32:18 -0400
1297
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1298
+
1299
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
1300
+
1301
+
1302
+
1303
+ Started GET "/" for 127.0.0.1 at 2012-04-16 22:03:32 -0400
1304
+ Processing by SiteController#index as HTML
1305
+ Rendered site/index.html.erb within layouts/application (52.7ms)
1306
+ Completed 200 OK in 65ms (Views: 64.9ms | ActiveRecord: 0.0ms)
1307
+
1308
+
1309
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-16 22:03:32 -0400
1310
+ Served asset /application.css - 200 OK (1ms)
1311
+
1312
+
1313
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-04-16 22:03:37 -0400
1314
+ Processing by CopycatTranslationsController#index as HTML
1315
+ Filter chain halted as #<Proc:0x00000100eb6aa8@/Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
1316
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
1317
+
1318
+
1319
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-04-16 22:03:47 -0400
1320
+ Processing by CopycatTranslationsController#index as HTML
1321
+ Filter chain halted as #<Proc:0x00000100eb6aa8@/Users/sjm/.rvm/gems/ruby-1.9.3-p125@copycat/gems/actionpack-3.2.2/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
1322
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
1323
+
1324
+
1325
+ Started GET "/copycat_translations" for 127.0.0.1 at 2012-04-16 22:04:13 -0400
1326
+ Processing by CopycatTranslationsController#index as HTML
1327
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.9ms)
1328
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1329
+
1330
+
1331
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:04:13 -0400
1332
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
1333
+
1334
+
1335
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-04-16 22:04:16 -0400
1336
+ Processing by CopycatTranslationsController#index as HTML
1337
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
1338
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (2.0ms)
1339
+ Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1340
+
1341
+
1342
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:04:16 -0400
1343
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1344
+
1345
+
1346
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=si&commit=Search" for 127.0.0.1 at 2012-04-16 22:04:19 -0400
1347
+ Processing by CopycatTranslationsController#index as HTML
1348
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"si", "commit"=>"Search"}
1349
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (2.3ms)
1350
+ Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
1351
+
1352
+
1353
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:04:19 -0400
1354
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1355
+
1356
+
1357
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=sihe&commit=Search" for 127.0.0.1 at 2012-04-16 22:04:23 -0400
1358
+ Processing by CopycatTranslationsController#index as HTML
1359
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"sihe", "commit"=>"Search"}
1360
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.1ms)
1361
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1362
+
1363
+
1364
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:04:23 -0400
1365
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1366
+
1367
+
1368
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=he&commit=Search" for 127.0.0.1 at 2012-04-16 22:04:25 -0400
1369
+ Processing by CopycatTranslationsController#index as HTML
1370
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"he", "commit"=>"Search"}
1371
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.4ms)
1372
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1373
+
1374
+
1375
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:04:25 -0400
1376
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1377
+
1378
+
1379
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=he&commit=Search" for 127.0.0.1 at 2012-04-16 22:04:47 -0400
1380
+ Processing by CopycatTranslationsController#index as HTML
1381
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"he", "commit"=>"Search"}
1382
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
1383
+  (0.2ms) SELECT COUNT(*) FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%he%') OR ("copycat_translations"."value" LIKE '%he%'))
1384
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%he%') OR ("copycat_translations"."value" LIKE '%he%'))
1385
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (4.7ms)
1386
+ Completed 200 OK in 28ms (Views: 15.5ms | ActiveRecord: 0.4ms)
1387
+
1388
+
1389
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:04:47 -0400
1390
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
1391
+
1392
+
1393
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=he&commit=Search" for 127.0.0.1 at 2012-04-16 22:10:23 -0400
1394
+ Processing by CopycatTranslationsController#index as HTML
1395
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"he", "commit"=>"Search"}
1396
+ CopycatTranslation Load (1.6ms) SELECT distinct locale FROM "copycat_translations" 
1397
+  (0.2ms) SELECT COUNT(*) FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND ("copycat_translations"."locale" = 'en' OR "copycat_translations"."locale" = 'en')
1398
+ CopycatTranslation Load (0.6ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND ("copycat_translations"."locale" = 'en' OR "copycat_translations"."locale" = 'en')
1399
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (5.2ms)
1400
+ Completed 200 OK in 32ms (Views: 16.5ms | ActiveRecord: 2.4ms)
1401
+
1402
+
1403
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:10:23 -0400
1404
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
1405
+
1406
+
1407
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=sit&commit=Search" for 127.0.0.1 at 2012-04-16 22:27:20 -0400
1408
+ Processing by CopycatTranslationsController#index as HTML
1409
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"sit", "commit"=>"Search"}
1410
+ CopycatTranslation Load (0.2ms) SELECT distinct locale FROM "copycat_translations" 
1411
+  (0.2ms) SELECT COUNT(*) FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%sit%') OR ("copycat_translations"."value" LIKE '%sit%'))
1412
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%sit%') OR ("copycat_translations"."value" LIKE '%sit%'))
1413
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (5.1ms)
1414
+ Completed 200 OK in 44ms (Views: 17.8ms | ActiveRecord: 0.5ms)
1415
+
1416
+
1417
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:27:20 -0400
1418
+ Served asset /copycat_engine.css - 304 Not Modified (1ms)
1419
+
1420
+
1421
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=ead&commit=Search" for 127.0.0.1 at 2012-04-16 22:27:24 -0400
1422
+ Processing by CopycatTranslationsController#index as HTML
1423
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"ead", "commit"=>"Search"}
1424
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
1425
+  (0.1ms) SELECT COUNT(*) FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%ead%') OR ("copycat_translations"."value" LIKE '%ead%'))
1426
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%ead%') OR ("copycat_translations"."value" LIKE '%ead%'))
1427
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.9ms)
1428
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms)
1429
+
1430
+
1431
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:27:24 -0400
1432
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1433
+
1434
+
1435
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=nt&commit=Search" for 127.0.0.1 at 2012-04-16 22:27:27 -0400
1436
+ Processing by CopycatTranslationsController#index as HTML
1437
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"nt", "commit"=>"Search"}
1438
+ CopycatTranslation Load (0.2ms) SELECT distinct locale FROM "copycat_translations" 
1439
+  (0.1ms) SELECT COUNT(*) FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%nt%') OR ("copycat_translations"."value" LIKE '%nt%'))
1440
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%nt%') OR ("copycat_translations"."value" LIKE '%nt%'))
1441
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (2.1ms)
1442
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.4ms)
1443
+
1444
+
1445
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:27:27 -0400
1446
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1447
+
1448
+
1449
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=%5C&commit=Search" for 127.0.0.1 at 2012-04-16 22:27:31 -0400
1450
+ Processing by CopycatTranslationsController#index as HTML
1451
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"\\", "commit"=>"Search"}
1452
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
1453
+  (0.1ms) SELECT COUNT(*) FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%\%') OR ("copycat_translations"."value" LIKE '%\%'))
1454
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.1ms)
1455
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1456
+
1457
+
1458
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:27:31 -0400
1459
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1460
+
1461
+
1462
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=&commit=Search" for 127.0.0.1 at 2012-04-16 22:27:33 -0400
1463
+ Processing by CopycatTranslationsController#index as HTML
1464
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"", "commit"=>"Search"}
1465
+ CopycatTranslation Load (0.2ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en'
1466
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations" 
1467
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.1ms)
1468
+ Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.3ms)
1469
+
1470
+
1471
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:27:33 -0400
1472
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)
1473
+
1474
+
1475
+ Started GET "/copycat_translations?utf8=%E2%9C%93&locale=en&search=ea&commit=Search" for 127.0.0.1 at 2012-04-16 22:27:36 -0400
1476
+ Processing by CopycatTranslationsController#index as HTML
1477
+ Parameters: {"utf8"=>"✓", "locale"=>"en", "search"=>"ea", "commit"=>"Search"}
1478
+ CopycatTranslation Load (0.1ms) SELECT distinct locale FROM "copycat_translations"
1479
+  (0.1ms) SELECT COUNT(*) FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%ea%') OR ("copycat_translations"."value" LIKE '%ea%'))
1480
+ CopycatTranslation Load (0.1ms) SELECT "copycat_translations".* FROM "copycat_translations" WHERE "copycat_translations"."locale" = 'en' AND (("copycat_translations"."key" LIKE '%ea%') OR ("copycat_translations"."value" LIKE '%ea%'))
1481
+ Rendered /vermonster/copycat/app/views/copycat_translations/index.html.erb within layouts/copycat (1.6ms)
1482
+ Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.3ms)
1483
+
1484
+
1485
+ Started GET "/assets/copycat_engine.css?body=1" for 127.0.0.1 at 2012-04-16 22:27:36 -0400
1486
+ Served asset /copycat_engine.css - 304 Not Modified (0ms)