Skip to content

Commit

Permalink
Added -a/--with-assets option to rails generator that will include de…
Browse files Browse the repository at this point in the history
…fault assets for application layout, javascript, and stylesheet [DHH]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3764 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Mar 4, 2006
1 parent b059ceb commit b339170
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 3 deletions.
2 changes: 2 additions & 0 deletions railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN* *SVN*


* Added -a/--with-assets option to rails generator that will include default assets for application layout, javascript, and stylesheet [DHH]

* Added socket cleanup for lighttpd, both before and after [DHH] * Added socket cleanup for lighttpd, both before and after [DHH]


* Added automatic creation of tmp/ when running script/server [DHH] * Added automatic creation of tmp/ when running script/server [DHH]
Expand Down
1 change: 1 addition & 0 deletions railties/assets/application.css
@@ -0,0 +1 @@
/* Place your application-specific styles here */
1 change: 1 addition & 0 deletions railties/assets/application.js
@@ -0,0 +1 @@
// Place your application-specific JavaScript functions and classes here
15 changes: 15 additions & 0 deletions railties/assets/application.rhtml
@@ -0,0 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title><%=h @title || "Rails Application" %></title>
<%= javascript_include_tag :defaults %>
<%= stylesheet_link_tag "application" %>
</head>

<body>
<%= yield %>
</body>
</html>
Expand Up @@ -6,7 +6,7 @@ class AppGenerator < Rails::Generator::Base


DATABASES = %w( mysql oracle postgresql sqlite2 sqlite3 ) DATABASES = %w( mysql oracle postgresql sqlite2 sqlite3 )


default_options :db => "mysql", :shebang => DEFAULT_SHEBANG default_options :db => "mysql", :shebang => DEFAULT_SHEBANG, :include_assets => false
mandatory_options :source => "#{File.dirname(__FILE__)}/../../../../.." mandatory_options :source => "#{File.dirname(__FILE__)}/../../../../.."


def initialize(runtime_args, runtime_options = {}) def initialize(runtime_args, runtime_options = {})
Expand Down Expand Up @@ -81,6 +81,13 @@ def manifest
%w(server production development test).each { |file| %w(server production development test).each { |file|
m.file "configs/empty.log", "log/#{file}.log", :chmod => 0666 m.file "configs/empty.log", "log/#{file}.log", :chmod => 0666
} }

# Default assets
if options[:include_assets]
m.file "assets/application.css", "public/stylesheets/application.css"
m.file "assets/application.js", "public/javascripts/application.css"
m.file "assets/application.rhtml", "app/views/layouts/application.rhtml"
end
end end
end end


Expand All @@ -97,8 +104,11 @@ def add_options!(opt)
"Default: #{DEFAULT_SHEBANG}") { |options[:shebang]| } "Default: #{DEFAULT_SHEBANG}") { |options[:shebang]| }


opt.on("-d", "--database=name", String, opt.on("-d", "--database=name", String,
"Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite2/sqlite3).", "Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite2/sqlite3).",
"Default: mysql") { |options[:db]| } "Default: mysql") { |options[:db]| }

opt.on("-a", "--with-assets",
"Include default assets for layout, javascript, and stylesheet.") { |options[:include_assets]| }
end end


def mysql_socket_location def mysql_socket_location
Expand Down

0 comments on commit b339170

Please sign in to comment.