diff options
author | Chulki Lee <chulki.lee@gmail.com> | 2014-01-14 09:57:40 -0800 |
---|---|---|
committer | Chulki Lee <chulki.lee@gmail.com> | 2014-01-14 11:13:42 -0800 |
commit | 1ab6c656d6b1fc61e63490e5191ed054d1a06a91 (patch) | |
tree | b07e6cc314bb3a0e31613683ce54ef148e3f094d /guides/code | |
parent | b23330745bddd6729f95fb8487e3ec4857e4bb58 (diff) | |
download | rails-1ab6c656d6b1fc61e63490e5191ed054d1a06a91.tar.gz rails-1ab6c656d6b1fc61e63490e5191ed054d1a06a91.tar.bz2 rails-1ab6c656d6b1fc61e63490e5191ed054d1a06a91.zip |
Use single quotes in generated files
Diffstat (limited to 'guides/code')
-rw-r--r-- | guides/code/getting_started/app/views/layouts/application.html.erb | 4 | ||||
-rw-r--r-- | guides/code/getting_started/config/environments/test.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/guides/code/getting_started/app/views/layouts/application.html.erb b/guides/code/getting_started/app/views/layouts/application.html.erb index 95368c37a3..d0ba8415e6 100644 --- a/guides/code/getting_started/app/views/layouts/application.html.erb +++ b/guides/code/getting_started/app/views/layouts/application.html.erb @@ -2,8 +2,8 @@ <html> <head> <title>Blog</title> - <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %> - <%= javascript_include_tag "application", "data-turbolinks-track" => true %> + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> <%= csrf_meta_tags %> </head> <body> diff --git a/guides/code/getting_started/config/environments/test.rb b/guides/code/getting_started/config/environments/test.rb index 00adaa5015..34ab1530d1 100644 --- a/guides/code/getting_started/config/environments/test.rb +++ b/guides/code/getting_started/config/environments/test.rb @@ -14,7 +14,7 @@ Blog::Application.configure do # Configure static asset server for tests with Cache-Control for performance. config.serve_static_assets = true - config.static_cache_control = "public, max-age=3600" + config.static_cache_control = 'public, max-age=3600' # Show full error reports and disable caching. config.consider_all_requests_local = true |