to_permalink 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -1,3 +1,7 @@
1
1
  = ToPermalink
2
2
 
3
- This project rocks and uses MIT-LICENSE.
3
+ This project rocks and uses MIT-LICENSE.
4
+ This gem will add to_vnlink method for String class.
5
+ to_vnlink method will transform "Cộng đồng Ruby" to "cong-dong-ruby" ...
6
+
7
+ Updated for Ruby 1.9
data/lib/core_ext.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # encoding: utf-8
1
2
  String.class_eval do
2
3
  def to_vnlink
3
4
  text = self.downcase
@@ -1,3 +1,3 @@
1
1
  module ToPermalink
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,193 +1,166 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: to_permalink
3
- version: !ruby/object:Gem::Version
4
- hash: 27
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 0
9
- - 2
10
- version: 0.0.2
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Pham Trung Nam
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-09-15 00:00:00 Z
12
+ date: 2012-05-07 00:00:00.000000000 Z
19
13
  dependencies: []
20
-
21
14
  description: This gem will add to_vnlink method for String class.
22
- email:
15
+ email:
23
16
  - nampt.kbs@kbsvn.vn
24
17
  executables: []
25
-
26
18
  extensions: []
27
-
28
19
  extra_rdoc_files: []
29
-
30
- files:
20
+ files:
21
+ - lib/tasks/to_permalink_tasks.rake
22
+ - lib/to_permalink.rb
31
23
  - lib/to_permalink/version.rb
32
24
  - lib/core_ext.rb
33
- - lib/to_permalink.rb
34
- - lib/tasks/to_permalink_tasks.rake
35
25
  - MIT-LICENSE
36
26
  - Rakefile
37
27
  - README.rdoc
38
- - test/to_permalink_test.rb
39
- - test/dummy/public/500.html
40
28
  - test/dummy/public/422.html
41
- - test/dummy/public/404.html
42
29
  - test/dummy/public/favicon.ico
43
- - test/dummy/db/test.sqlite3
44
- - test/dummy/db/schema.rb
45
- - test/dummy/db/development.sqlite3
30
+ - test/dummy/public/404.html
31
+ - test/dummy/public/500.html
46
32
  - test/dummy/db/migrate/20110915034248_create_links.rb
47
- - test/dummy/config/environments/production.rb
33
+ - test/dummy/db/schema.rb
34
+ - test/dummy/Rakefile
35
+ - test/dummy/config/locales/en.yml
36
+ - test/dummy/config/application.rb
37
+ - test/dummy/config/routes.rb
38
+ - test/dummy/config/boot.rb
39
+ - test/dummy/config/environment.rb
48
40
  - test/dummy/config/environments/development.rb
41
+ - test/dummy/config/environments/production.rb
49
42
  - test/dummy/config/environments/test.rb
50
- - test/dummy/config/environment.rb
51
- - test/dummy/config/initializers/mime_types.rb
52
43
  - test/dummy/config/initializers/backtrace_silencers.rb
53
- - test/dummy/config/initializers/wrap_parameters.rb
54
44
  - test/dummy/config/initializers/secret_token.rb
45
+ - test/dummy/config/initializers/mime_types.rb
55
46
  - test/dummy/config/initializers/inflections.rb
47
+ - test/dummy/config/initializers/wrap_parameters.rb
56
48
  - test/dummy/config/initializers/session_store.rb
57
- - test/dummy/config/routes.rb
58
- - test/dummy/config/application.rb
59
- - test/dummy/config/locales/en.yml
60
49
  - test/dummy/config/database.yml
61
- - test/dummy/config/boot.rb
62
- - test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4
63
- - test/dummy/tmp/cache/assets/D31/0F0/sprockets%2Fb8fc2e1acf200934c716227c0e76bf32
64
- - test/dummy/tmp/cache/assets/DAA/FB0/sprockets%2Fcac5c8760fe98b26e526b1c3d97fb57a
65
- - test/dummy/tmp/cache/assets/D67/F30/sprockets%2F8cda0bc044ddde203789d2b42c9057b8
66
- - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
67
- - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
68
- - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
69
- - test/dummy/tmp/cache/assets/E2B/970/sprockets%2Fb13dda79ac8dbf0b0dcb6f0c59f6b378
70
- - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
71
- - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
72
- - test/dummy/app/assets/stylesheets/links.css
73
- - test/dummy/app/assets/stylesheets/application.css
74
- - test/dummy/app/assets/stylesheets/scaffold.css
75
- - test/dummy/app/assets/javascripts/application.js
76
- - test/dummy/app/assets/javascripts/links.js
77
- - test/dummy/app/helpers/links_helper.rb
78
- - test/dummy/app/helpers/application_helper.rb
79
- - test/dummy/app/controllers/links_controller.rb
80
50
  - test/dummy/app/controllers/application_controller.rb
51
+ - test/dummy/app/controllers/links_controller.rb
81
52
  - test/dummy/app/views/layouts/application.html.erb
82
- - test/dummy/app/views/links/edit.html.erb
83
53
  - test/dummy/app/views/links/_form.html.erb
84
54
  - test/dummy/app/views/links/show.html.erb
85
- - test/dummy/app/views/links/index.html.erb
86
55
  - test/dummy/app/views/links/new.html.erb
56
+ - test/dummy/app/views/links/index.html.erb
57
+ - test/dummy/app/views/links/edit.html.erb
87
58
  - test/dummy/app/models/link.rb
88
- - test/dummy/test/unit/link_test.rb
89
- - test/dummy/test/unit/helpers/links_helper_test.rb
90
- - test/dummy/test/fixtures/links.yml
91
- - test/dummy/test/functional/links_controller_test.rb
92
- - test/dummy/log/test.log
93
- - test/dummy/log/development.log
59
+ - test/dummy/app/assets/stylesheets/application.css
60
+ - test/dummy/app/assets/stylesheets/scaffold.css
61
+ - test/dummy/app/assets/stylesheets/links.css
62
+ - test/dummy/app/assets/javascripts/links.js
63
+ - test/dummy/app/assets/javascripts/application.js
64
+ - test/dummy/app/helpers/links_helper.rb
65
+ - test/dummy/app/helpers/application_helper.rb
94
66
  - test/dummy/config.ru
95
67
  - test/dummy/script/rails
96
- - test/dummy/Rakefile
97
- - test/test_helper.rb
68
+ - test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4
69
+ - test/dummy/tmp/cache/assets/E2B/970/sprockets%2Fb13dda79ac8dbf0b0dcb6f0c59f6b378
70
+ - test/dummy/tmp/cache/assets/D67/F30/sprockets%2F8cda0bc044ddde203789d2b42c9057b8
71
+ - test/dummy/tmp/cache/assets/D31/0F0/sprockets%2Fb8fc2e1acf200934c716227c0e76bf32
72
+ - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
73
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
74
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
75
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
76
+ - test/dummy/tmp/cache/assets/DAA/FB0/sprockets%2Fcac5c8760fe98b26e526b1c3d97fb57a
77
+ - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
78
+ - test/dummy/test/fixtures/links.yml
79
+ - test/dummy/test/functional/links_controller_test.rb
80
+ - test/dummy/test/unit/link_test.rb
81
+ - test/dummy/test/unit/helpers/links_helper_test.rb
98
82
  - test/core_ext_test.rb
83
+ - test/test_helper.rb
84
+ - test/to_permalink_test.rb
99
85
  homepage: http://kbsvn.vn
100
86
  licenses: []
101
-
102
87
  post_install_message:
103
88
  rdoc_options: []
104
-
105
- require_paths:
89
+ require_paths:
106
90
  - lib
107
- required_ruby_version: !ruby/object:Gem::Requirement
91
+ required_ruby_version: !ruby/object:Gem::Requirement
108
92
  none: false
109
- requirements:
110
- - - ">="
111
- - !ruby/object:Gem::Version
112
- hash: 3
113
- segments:
114
- - 0
115
- version: "0"
116
- required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
98
  none: false
118
- requirements:
119
- - - ">="
120
- - !ruby/object:Gem::Version
121
- hash: 3
122
- segments:
123
- - 0
124
- version: "0"
99
+ requirements:
100
+ - - ! '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
125
103
  requirements: []
126
-
127
104
  rubyforge_project:
128
- rubygems_version: 1.8.10
105
+ rubygems_version: 1.8.23
129
106
  signing_key:
130
107
  specification_version: 3
131
108
  summary: Summary of ToPermalink.
132
- test_files:
133
- - test/to_permalink_test.rb
134
- - test/dummy/public/500.html
109
+ test_files:
135
110
  - test/dummy/public/422.html
136
- - test/dummy/public/404.html
137
111
  - test/dummy/public/favicon.ico
138
- - test/dummy/db/test.sqlite3
139
- - test/dummy/db/schema.rb
140
- - test/dummy/db/development.sqlite3
112
+ - test/dummy/public/404.html
113
+ - test/dummy/public/500.html
141
114
  - test/dummy/db/migrate/20110915034248_create_links.rb
142
- - test/dummy/config/environments/production.rb
115
+ - test/dummy/db/schema.rb
116
+ - test/dummy/Rakefile
117
+ - test/dummy/config/locales/en.yml
118
+ - test/dummy/config/application.rb
119
+ - test/dummy/config/routes.rb
120
+ - test/dummy/config/boot.rb
121
+ - test/dummy/config/environment.rb
143
122
  - test/dummy/config/environments/development.rb
123
+ - test/dummy/config/environments/production.rb
144
124
  - test/dummy/config/environments/test.rb
145
- - test/dummy/config/environment.rb
146
- - test/dummy/config/initializers/mime_types.rb
147
125
  - test/dummy/config/initializers/backtrace_silencers.rb
148
- - test/dummy/config/initializers/wrap_parameters.rb
149
126
  - test/dummy/config/initializers/secret_token.rb
127
+ - test/dummy/config/initializers/mime_types.rb
150
128
  - test/dummy/config/initializers/inflections.rb
129
+ - test/dummy/config/initializers/wrap_parameters.rb
151
130
  - test/dummy/config/initializers/session_store.rb
152
- - test/dummy/config/routes.rb
153
- - test/dummy/config/application.rb
154
- - test/dummy/config/locales/en.yml
155
131
  - test/dummy/config/database.yml
156
- - test/dummy/config/boot.rb
157
- - test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4
158
- - test/dummy/tmp/cache/assets/D31/0F0/sprockets%2Fb8fc2e1acf200934c716227c0e76bf32
159
- - test/dummy/tmp/cache/assets/DAA/FB0/sprockets%2Fcac5c8760fe98b26e526b1c3d97fb57a
160
- - test/dummy/tmp/cache/assets/D67/F30/sprockets%2F8cda0bc044ddde203789d2b42c9057b8
161
- - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
162
- - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
163
- - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
164
- - test/dummy/tmp/cache/assets/E2B/970/sprockets%2Fb13dda79ac8dbf0b0dcb6f0c59f6b378
165
- - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
166
- - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
167
- - test/dummy/app/assets/stylesheets/links.css
168
- - test/dummy/app/assets/stylesheets/application.css
169
- - test/dummy/app/assets/stylesheets/scaffold.css
170
- - test/dummy/app/assets/javascripts/application.js
171
- - test/dummy/app/assets/javascripts/links.js
172
- - test/dummy/app/helpers/links_helper.rb
173
- - test/dummy/app/helpers/application_helper.rb
174
- - test/dummy/app/controllers/links_controller.rb
175
132
  - test/dummy/app/controllers/application_controller.rb
133
+ - test/dummy/app/controllers/links_controller.rb
176
134
  - test/dummy/app/views/layouts/application.html.erb
177
- - test/dummy/app/views/links/edit.html.erb
178
135
  - test/dummy/app/views/links/_form.html.erb
179
136
  - test/dummy/app/views/links/show.html.erb
180
- - test/dummy/app/views/links/index.html.erb
181
137
  - test/dummy/app/views/links/new.html.erb
138
+ - test/dummy/app/views/links/index.html.erb
139
+ - test/dummy/app/views/links/edit.html.erb
182
140
  - test/dummy/app/models/link.rb
183
- - test/dummy/test/unit/link_test.rb
184
- - test/dummy/test/unit/helpers/links_helper_test.rb
185
- - test/dummy/test/fixtures/links.yml
186
- - test/dummy/test/functional/links_controller_test.rb
187
- - test/dummy/log/test.log
188
- - test/dummy/log/development.log
141
+ - test/dummy/app/assets/stylesheets/application.css
142
+ - test/dummy/app/assets/stylesheets/scaffold.css
143
+ - test/dummy/app/assets/stylesheets/links.css
144
+ - test/dummy/app/assets/javascripts/links.js
145
+ - test/dummy/app/assets/javascripts/application.js
146
+ - test/dummy/app/helpers/links_helper.rb
147
+ - test/dummy/app/helpers/application_helper.rb
189
148
  - test/dummy/config.ru
190
149
  - test/dummy/script/rails
191
- - test/dummy/Rakefile
192
- - test/test_helper.rb
150
+ - test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4
151
+ - test/dummy/tmp/cache/assets/E2B/970/sprockets%2Fb13dda79ac8dbf0b0dcb6f0c59f6b378
152
+ - test/dummy/tmp/cache/assets/D67/F30/sprockets%2F8cda0bc044ddde203789d2b42c9057b8
153
+ - test/dummy/tmp/cache/assets/D31/0F0/sprockets%2Fb8fc2e1acf200934c716227c0e76bf32
154
+ - test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
155
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
156
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
157
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
158
+ - test/dummy/tmp/cache/assets/DAA/FB0/sprockets%2Fcac5c8760fe98b26e526b1c3d97fb57a
159
+ - test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
160
+ - test/dummy/test/fixtures/links.yml
161
+ - test/dummy/test/functional/links_controller_test.rb
162
+ - test/dummy/test/unit/link_test.rb
163
+ - test/dummy/test/unit/helpers/links_helper_test.rb
193
164
  - test/core_ext_test.rb
165
+ - test/test_helper.rb
166
+ - test/to_permalink_test.rb
Binary file
Binary file
@@ -1,511 +0,0 @@
1
-  (0.0ms) select sqlite_version(*)
2
-  (106.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
-  (0.1ms) PRAGMA index_list("schema_migrations")
4
-  (63.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
- Migrating to CreateLinks (20110915034248)
7
-  (0.4ms) CREATE TABLE "links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "permalink" varchar(255), "created_at" datetime, "updated_at" datetime)
8
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110915034248')
9
-  (0.1ms) select sqlite_version(*)
10
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
-  (0.0ms) PRAGMA index_list("links")
12
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
-  (0.1ms) select sqlite_version(*)
14
-  (123.8ms) CREATE TABLE "links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "permalink" varchar(255), "created_at" datetime, "updated_at" datetime) 
15
-  (68.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
16
-  (0.1ms) PRAGMA index_list("schema_migrations")
17
-  (81.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
-  (0.1ms) SELECT version FROM "schema_migrations"
19
-  (66.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110915034248')
20
-
21
-
22
- Started GET "/" for 127.0.0.1 at Thu Sep 15 10:44:47 +0700 2011
23
-
24
- ActionController::RoutingError (No route matches [GET] "/"):
25
-
26
-
27
- Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.9ms)
28
-
29
-
30
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:44:55 +0700 2011
31
- Processing by LinksController#index as HTML
32
- Link Load (0.2ms) SELECT "links".* FROM "links" 
33
- Rendered links/index.html.erb within layouts/application (1.3ms)
34
- Compiled application.css (3ms) (pid 12549)
35
- Compiled links.css (0ms) (pid 12549)
36
- Compiled scaffold.css (0ms) (pid 12549)
37
- Completed 500 Internal Server Error in 60ms
38
-
39
- ActionView::Template::Error (couldn't find file 'jquery'
40
- (in /home/nampt/workspace/to_permalink/test/dummy/app/assets/javascripts/application.js:7)):
41
- 3: <head>
42
- 4: <title>Dummy</title>
43
- 5: <%= stylesheet_link_tag "application" %>
44
- 6: <%= javascript_include_tag "application" %>
45
- 7: <%= csrf_meta_tags %>
46
- 8: </head>
47
- 9: <body>
48
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__534842829__616359028'
49
- app/controllers/links_controller.rb:7:in `index'
50
-
51
- Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
52
- Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
53
- Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
54
-
55
-
56
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:45:24 +0700 2011
57
- Processing by LinksController#index as HTML
58
- Link Load (0.1ms) SELECT "links".* FROM "links"
59
- Rendered links/index.html.erb within layouts/application (0.6ms)
60
- Compiled application.js (2ms) (pid 12549)
61
- Compiled links.js (0ms) (pid 12549)
62
- Completed 200 OK in 33ms (Views: 30.6ms | ActiveRecord: 0.3ms)
63
-
64
-
65
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:45:24 +0700 2011
66
- Served asset /links.css - 200 OK (4ms)
67
-
68
-
69
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:45:24 +0700 2011
70
- Served asset /application.css - 200 OK (2ms)
71
-
72
-
73
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:45:24 +0700 2011
74
- Served asset /scaffold.css - 200 OK (8ms)
75
-
76
-
77
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:45:24 +0700 2011
78
- Served asset /links.js - 200 OK (3ms)
79
-
80
-
81
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:45:24 +0700 2011
82
- Served asset /application.js - 200 OK (2ms)
83
-
84
-
85
- Started GET "/links/new" for 127.0.0.1 at Thu Sep 15 10:45:26 +0700 2011
86
- Processing by LinksController#new as HTML
87
- Rendered links/_form.html.erb (12.8ms)
88
- Rendered links/new.html.erb within layouts/application (18.8ms)
89
- Completed 200 OK in 96ms (Views: 94.9ms | ActiveRecord: 0.3ms)
90
-
91
-
92
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:45:26 +0700 2011
93
- Served asset /application.js - 304 Not Modified (0ms)
94
-
95
-
96
- Started POST "/links" for 127.0.0.1 at Thu Sep 15 10:45:31 +0700 2011
97
- Processing by LinksController#create as HTML
98
- Parameters: {"commit"=>"Create Link", "authenticity_token"=>"twnq/Ba1UmokelHC7Im7XcNHyIgKUeKg3w955XA8gVY=", "utf8"=>"✓", "link"=>{"permalink"=>"", "name"=>"đồ chó chết"}}
99
- SQL (9.0ms) INSERT INTO "links" ("created_at", "name", "permalink", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 15 Sep 2011 03:45:31 UTC +00:00], ["name", "do-cho-chet"], ["permalink", "do-cho-chet"], ["updated_at", Thu, 15 Sep 2011 03:45:31 UTC +00:00]]
100
- Redirected to http://localhost:3000/links/1
101
- Completed 302 Found in 146ms
102
-
103
-
104
- Started GET "/links/1" for 127.0.0.1 at Thu Sep 15 10:45:32 +0700 2011
105
- Processing by LinksController#show as HTML
106
- Parameters: {"id"=>"1"}
107
- Link Load (0.3ms) SELECT "links".* FROM "links" WHERE "links"."id" = ? LIMIT 1 [["id", "1"]]
108
- Rendered links/show.html.erb within layouts/application (6.3ms)
109
- Completed 200 OK in 25ms (Views: 17.6ms | ActiveRecord: 0.8ms)
110
-
111
-
112
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:45:32 +0700 2011
113
- Served asset /application.js - 304 Not Modified (0ms)
114
-
115
-
116
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:45:34 +0700 2011
117
- Processing by LinksController#index as HTML
118
- Link Load (0.1ms) SELECT "links".* FROM "links" 
119
- Rendered links/index.html.erb within layouts/application (7.1ms)
120
- Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.6ms)
121
-
122
-
123
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:45:34 +0700 2011
124
- Served asset /application.js - 304 Not Modified (1ms)
125
-
126
-
127
- Started GET "/links/new" for 127.0.0.1 at Thu Sep 15 10:47:41 +0700 2011
128
- Processing by LinksController#new as HTML
129
- Rendered links/_form.html.erb (8.6ms)
130
- Rendered links/new.html.erb within layouts/application (10.0ms)
131
- Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms)
132
-
133
-
134
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:41 +0700 2011
135
- Served asset /application.css - 304 Not Modified (0ms)
136
-
137
-
138
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:41 +0700 2011
139
- Served asset /links.css - 304 Not Modified (0ms)
140
-
141
-
142
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:41 +0700 2011
143
- Served asset /scaffold.css - 304 Not Modified (0ms)
144
-
145
-
146
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:47:41 +0700 2011
147
- Served asset /links.js - 304 Not Modified (0ms)
148
-
149
-
150
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:47:41 +0700 2011
151
- Served asset /application.js - 304 Not Modified (0ms)
152
-
153
-
154
- Started POST "/links" for 127.0.0.1 at Thu Sep 15 10:47:51 +0700 2011
155
- Processing by LinksController#create as HTML
156
- Parameters: {"commit"=>"Create Link", "authenticity_token"=>"twnq/Ba1UmokelHC7Im7XcNHyIgKUeKg3w955XA8gVY=", "utf8"=>"✓", "link"=>{"permalink"=>"", "name"=>"tết ăn cơm này nọ"}}
157
- SQL (0.5ms) INSERT INTO "links" ("created_at", "name", "permalink", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 15 Sep 2011 03:47:51 UTC +00:00], ["name", "tet-an-com-nay-no"], ["permalink", "tet-an-com-nay-no"], ["updated_at", Thu, 15 Sep 2011 03:47:51 UTC +00:00]]
158
- Redirected to http://localhost:3000/links/2
159
- Completed 302 Found in 89ms
160
-
161
-
162
- Started GET "/links/2" for 127.0.0.1 at Thu Sep 15 10:47:51 +0700 2011
163
- Processing by LinksController#show as HTML
164
- Parameters: {"id"=>"2"}
165
- Link Load (0.2ms) SELECT "links".* FROM "links" WHERE "links"."id" = ? LIMIT 1 [["id", "2"]]
166
- Rendered links/show.html.erb within layouts/application (6.0ms)
167
- Completed 200 OK in 21ms (Views: 17.7ms | ActiveRecord: 0.7ms)
168
-
169
-
170
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:51 +0700 2011
171
- Served asset /application.css - 304 Not Modified (0ms)
172
-
173
-
174
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:51 +0700 2011
175
- Served asset /links.css - 304 Not Modified (0ms)
176
-
177
-
178
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:51 +0700 2011
179
- Served asset /scaffold.css - 304 Not Modified (0ms)
180
-
181
-
182
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:47:51 +0700 2011
183
- Served asset /links.js - 304 Not Modified (0ms)
184
-
185
-
186
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:47:51 +0700 2011
187
- Served asset /application.js - 304 Not Modified (0ms)
188
-
189
-
190
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:47:53 +0700 2011
191
- Processing by LinksController#index as HTML
192
- Link Load (0.1ms) SELECT "links".* FROM "links"
193
- Rendered links/index.html.erb within layouts/application (8.6ms)
194
- Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.6ms)
195
-
196
-
197
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:53 +0700 2011
198
- Served asset /application.css - 304 Not Modified (0ms)
199
-
200
-
201
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:53 +0700 2011
202
- Served asset /links.css - 304 Not Modified (0ms)
203
-
204
-
205
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:47:53 +0700 2011
206
- Served asset /scaffold.css - 304 Not Modified (0ms)
207
-
208
-
209
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:47:53 +0700 2011
210
- Served asset /links.js - 304 Not Modified (0ms)
211
-
212
-
213
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:47:53 +0700 2011
214
- Served asset /application.js - 304 Not Modified (0ms)
215
-
216
-
217
- Started GET "/links/new" for 127.0.0.1 at Thu Sep 15 10:48:42 +0700 2011
218
- Processing by LinksController#new as HTML
219
- Rendered links/_form.html.erb (8.8ms)
220
- Rendered links/new.html.erb within layouts/application (10.2ms)
221
- Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.3ms)
222
-
223
-
224
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:42 +0700 2011
225
- Served asset /application.css - 304 Not Modified (0ms)
226
-
227
-
228
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:42 +0700 2011
229
- Served asset /links.css - 304 Not Modified (0ms)
230
-
231
-
232
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:42 +0700 2011
233
- Served asset /scaffold.css - 304 Not Modified (0ms)
234
-
235
-
236
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:42 +0700 2011
237
- Served asset /links.js - 304 Not Modified (0ms)
238
-
239
-
240
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:42 +0700 2011
241
- Served asset /application.js - 304 Not Modified (0ms)
242
-
243
-
244
- Started POST "/links" for 127.0.0.1 at Thu Sep 15 10:48:45 +0700 2011
245
- Processing by LinksController#create as HTML
246
- Parameters: {"commit"=>"Create Link", "authenticity_token"=>"twnq/Ba1UmokelHC7Im7XcNHyIgKUeKg3w955XA8gVY=", "utf8"=>"✓", "link"=>{"permalink"=>"", "name"=>"aaa"}}
247
- SQL (0.6ms) INSERT INTO "links" ("created_at", "name", "permalink", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 15 Sep 2011 03:48:45 UTC +00:00], ["name", "aaa"], ["permalink", "aaa"], ["updated_at", Thu, 15 Sep 2011 03:48:45 UTC +00:00]]
248
- Redirected to http://localhost:3000/links/3
249
- Completed 302 Found in 176ms
250
-
251
-
252
- Started GET "/links/3" for 127.0.0.1 at Thu Sep 15 10:48:45 +0700 2011
253
- Processing by LinksController#show as HTML
254
- Parameters: {"id"=>"3"}
255
- Link Load (0.2ms) SELECT "links".* FROM "links" WHERE "links"."id" = ? LIMIT 1 [["id", "3"]]
256
- Rendered links/show.html.erb within layouts/application (5.9ms)
257
- Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 0.8ms)
258
-
259
-
260
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:45 +0700 2011
261
- Served asset /application.css - 304 Not Modified (0ms)
262
-
263
-
264
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:45 +0700 2011
265
- Served asset /links.css - 304 Not Modified (0ms)
266
-
267
-
268
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:45 +0700 2011
269
- Served asset /scaffold.css - 304 Not Modified (0ms)
270
-
271
-
272
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:45 +0700 2011
273
- Served asset /links.js - 304 Not Modified (0ms)
274
-
275
-
276
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:45 +0700 2011
277
- Served asset /application.js - 304 Not Modified (0ms)
278
-
279
-
280
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:48:46 +0700 2011
281
- Processing by LinksController#index as HTML
282
- Link Load (0.2ms) SELECT "links".* FROM "links" 
283
- Rendered links/index.html.erb within layouts/application (10.4ms)
284
- Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.7ms)
285
-
286
-
287
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:47 +0700 2011
288
- Served asset /application.css - 304 Not Modified (0ms)
289
-
290
-
291
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:47 +0700 2011
292
- Served asset /links.css - 304 Not Modified (0ms)
293
-
294
-
295
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:47 +0700 2011
296
- Served asset /scaffold.css - 304 Not Modified (0ms)
297
-
298
-
299
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:47 +0700 2011
300
- Served asset /links.js - 304 Not Modified (0ms)
301
-
302
-
303
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:47 +0700 2011
304
- Served asset /application.js - 304 Not Modified (0ms)
305
-
306
-
307
- Started GET "/links/new" for 127.0.0.1 at Thu Sep 15 10:48:48 +0700 2011
308
- Processing by LinksController#new as HTML
309
- Rendered links/_form.html.erb (8.8ms)
310
- Rendered links/new.html.erb within layouts/application (10.2ms)
311
- Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms)
312
-
313
-
314
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:48 +0700 2011
315
- Served asset /application.css - 304 Not Modified (0ms)
316
-
317
-
318
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:48 +0700 2011
319
- Served asset /scaffold.css - 304 Not Modified (0ms)
320
-
321
-
322
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:49 +0700 2011
323
- Served asset /links.css - 304 Not Modified (0ms)
324
-
325
-
326
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:49 +0700 2011
327
- Served asset /links.js - 304 Not Modified (0ms)
328
-
329
-
330
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:49 +0700 2011
331
- Served asset /application.js - 304 Not Modified (0ms)
332
-
333
-
334
- Started POST "/links" for 127.0.0.1 at Thu Sep 15 10:48:54 +0700 2011
335
- Processing by LinksController#create as HTML
336
- Parameters: {"commit"=>"Create Link", "authenticity_token"=>"twnq/Ba1UmokelHC7Im7XcNHyIgKUeKg3w955XA8gVY=", "utf8"=>"✓", "link"=>{"permalink"=>"", "name"=>"tết ăn cơm này nọ"}}
337
- SQL (0.5ms) INSERT INTO "links" ("created_at", "name", "permalink", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 15 Sep 2011 03:48:54 UTC +00:00], ["name", "tet-an-com-nay-no"], ["permalink", "tet-an-com-nay-no"], ["updated_at", Thu, 15 Sep 2011 03:48:54 UTC +00:00]]
338
- Redirected to http://localhost:3000/links/4
339
- Completed 302 Found in 177ms
340
-
341
-
342
- Started GET "/links/4" for 127.0.0.1 at Thu Sep 15 10:48:54 +0700 2011
343
- Processing by LinksController#show as HTML
344
- Parameters: {"id"=>"4"}
345
- Link Load (0.2ms) SELECT "links".* FROM "links" WHERE "links"."id" = ? LIMIT 1 [["id", "4"]]
346
- Rendered links/show.html.erb within layouts/application (6.1ms)
347
- Completed 200 OK in 91ms (Views: 88.1ms | ActiveRecord: 0.6ms)
348
-
349
-
350
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:54 +0700 2011
351
- Served asset /application.css - 304 Not Modified (0ms)
352
-
353
-
354
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:54 +0700 2011
355
- Served asset /links.css - 304 Not Modified (0ms)
356
-
357
-
358
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:54 +0700 2011
359
- Served asset /scaffold.css - 304 Not Modified (0ms)
360
-
361
-
362
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:54 +0700 2011
363
- Served asset /links.js - 304 Not Modified (0ms)
364
-
365
-
366
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:54 +0700 2011
367
- Served asset /application.js - 304 Not Modified (0ms)
368
-
369
-
370
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:48:56 +0700 2011
371
- Processing by LinksController#index as HTML
372
- Link Load (0.2ms) SELECT "links".* FROM "links"
373
- Rendered links/index.html.erb within layouts/application (12.6ms)
374
- Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.7ms)
375
-
376
-
377
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:56 +0700 2011
378
- Served asset /application.css - 304 Not Modified (0ms)
379
-
380
-
381
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:56 +0700 2011
382
- Served asset /links.css - 304 Not Modified (0ms)
383
-
384
-
385
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:56 +0700 2011
386
- Served asset /links.js - 304 Not Modified (0ms)
387
-
388
-
389
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:48:56 +0700 2011
390
- Served asset /scaffold.css - 304 Not Modified (0ms)
391
-
392
-
393
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:48:56 +0700 2011
394
- Served asset /application.js - 304 Not Modified (0ms)
395
-
396
-
397
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:49:06 +0700 2011
398
- Processing by LinksController#index as HTML
399
- Link Load (0.2ms) SELECT "links".* FROM "links" 
400
- Rendered links/index.html.erb within layouts/application (54.1ms)
401
- Completed 200 OK in 75ms (Views: 73.0ms | ActiveRecord: 0.3ms)
402
-
403
-
404
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:07 +0700 2011
405
- Served asset /application.css - 304 Not Modified (0ms)
406
-
407
-
408
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:07 +0700 2011
409
- Served asset /links.css - 304 Not Modified (6ms)
410
-
411
-
412
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:07 +0700 2011
413
- Served asset /scaffold.css - 304 Not Modified (2ms)
414
-
415
-
416
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:07 +0700 2011
417
- Served asset /application.js - 304 Not Modified (0ms)
418
-
419
-
420
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:07 +0700 2011
421
- Served asset /links.js - 304 Not Modified (1ms)
422
-
423
-
424
- Started GET "/links/new" for 127.0.0.1 at Thu Sep 15 10:49:08 +0700 2011
425
- Processing by LinksController#new as HTML
426
- Rendered links/_form.html.erb (10.6ms)
427
- Rendered links/new.html.erb within layouts/application (15.6ms)
428
- Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.3ms)
429
-
430
-
431
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:08 +0700 2011
432
- Served asset /application.css - 304 Not Modified (0ms)
433
-
434
-
435
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:08 +0700 2011
436
- Served asset /links.css - 304 Not Modified (0ms)
437
-
438
-
439
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:08 +0700 2011
440
- Served asset /scaffold.css - 304 Not Modified (0ms)
441
-
442
-
443
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:08 +0700 2011
444
- Served asset /links.js - 304 Not Modified (0ms)
445
-
446
-
447
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:08 +0700 2011
448
- Served asset /application.js - 304 Not Modified (0ms)
449
-
450
-
451
- Started POST "/links" for 127.0.0.1 at Thu Sep 15 10:49:11 +0700 2011
452
- Processing by LinksController#create as HTML
453
- Parameters: {"commit"=>"Create Link", "authenticity_token"=>"twnq/Ba1UmokelHC7Im7XcNHyIgKUeKg3w955XA8gVY=", "utf8"=>"✓", "link"=>{"permalink"=>"", "name"=>"tết ăn cơm này nọ"}}
454
- SQL (9.0ms) INSERT INTO "links" ("created_at", "name", "permalink", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 15 Sep 2011 03:49:11 UTC +00:00], ["name", "tết ăn cơm này nọ"], ["permalink", "tet-an-com-nay-no"], ["updated_at", Thu, 15 Sep 2011 03:49:11 UTC +00:00]]
455
- Redirected to http://localhost:3000/links/5
456
- Completed 302 Found in 115ms
457
-
458
-
459
- Started GET "/links/5" for 127.0.0.1 at Thu Sep 15 10:49:11 +0700 2011
460
- Processing by LinksController#show as HTML
461
- Parameters: {"id"=>"5"}
462
- Link Load (0.3ms) SELECT "links".* FROM "links" WHERE "links"."id" = ? LIMIT 1 [["id", "5"]]
463
- Rendered links/show.html.erb within layouts/application (6.1ms)
464
- Completed 200 OK in 21ms (Views: 15.9ms | ActiveRecord: 0.8ms)
465
-
466
-
467
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:11 +0700 2011
468
- Served asset /application.css - 304 Not Modified (0ms)
469
-
470
-
471
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:11 +0700 2011
472
- Served asset /links.css - 304 Not Modified (0ms)
473
-
474
-
475
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:11 +0700 2011
476
- Served asset /scaffold.css - 304 Not Modified (0ms)
477
-
478
-
479
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:11 +0700 2011
480
- Served asset /links.js - 304 Not Modified (0ms)
481
-
482
-
483
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:11 +0700 2011
484
- Served asset /application.js - 304 Not Modified (0ms)
485
-
486
-
487
- Started GET "/links" for 127.0.0.1 at Thu Sep 15 10:49:12 +0700 2011
488
- Processing by LinksController#index as HTML
489
- Link Load (0.2ms) SELECT "links".* FROM "links"
490
- Rendered links/index.html.erb within layouts/application (13.9ms)
491
- Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.6ms)
492
-
493
-
494
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:13 +0700 2011
495
- Served asset /application.css - 304 Not Modified (0ms)
496
-
497
-
498
- Started GET "/assets/links.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:13 +0700 2011
499
- Served asset /links.css - 304 Not Modified (0ms)
500
-
501
-
502
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at Thu Sep 15 10:49:13 +0700 2011
503
- Served asset /scaffold.css - 304 Not Modified (0ms)
504
-
505
-
506
- Started GET "/assets/links.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:13 +0700 2011
507
- Served asset /links.js - 304 Not Modified (0ms)
508
-
509
-
510
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 15 10:49:13 +0700 2011
511
- Served asset /application.js - 304 Not Modified (0ms)
File without changes