rails--rails/railties/guides/source/rails_application_templates...

245 lines
5.8 KiB
Plaintext
Raw Normal View History

2009-04-17 13:28:46 +00:00
h2. Rails Application Templates
2009-07-25 15:03:58 +00:00
Application templates are simple ruby files containing DSL for adding plugins/gems/initializers etc. to your freshly created Rails project or an existing Rails project.
By referring to this guide, you will be able to:
2009-04-17 13:28:46 +00:00
2009-07-25 15:03:58 +00:00
* Use templates to generate/customize Rails applications
* Write your own reusable application templates using the Rails template API
2009-04-17 13:28:46 +00:00
endprologue.
2009-07-25 15:03:58 +00:00
h3. Usage
2009-04-17 13:28:46 +00:00
2011-04-14 00:58:26 +00:00
To apply a template, you need to provide the Rails generator with the location of the template you wish to apply, using -m option:
2009-07-25 15:03:58 +00:00
<shell>
$ rails new blog -m ~/template.rb
2009-07-25 15:03:58 +00:00
</shell>
2011-04-14 00:58:26 +00:00
It's also possible to apply a template using a URL:
2009-07-25 15:03:58 +00:00
<shell>
$ rails new blog -m https://gist.github.com/755496.txt
2009-07-25 15:03:58 +00:00
</shell>
2011-04-14 00:58:26 +00:00
Alternatively, you can use the rake task +rails:template+ to apply a template to an existing Rails application:
2009-07-25 15:03:58 +00:00
<shell>
$ rake rails:template LOCATION=~/template.rb
</shell>
h3. Template API
2011-04-14 00:58:26 +00:00
Rails templates API is very self explanatory and easy to understand. Here's an example of a typical Rails template:
2009-07-25 15:03:58 +00:00
<ruby>
# template.rb
run "rm public/index.html"
generate(:scaffold, "person name:string")
2010-12-26 16:40:56 +00:00
route "root :to => 'people#index'"
2009-07-25 15:03:58 +00:00
rake("db:migrate")
git :init
git :add => "."
git :commit => "-a -m 'Initial commit'"
</ruby>
2011-04-14 00:58:26 +00:00
The following sections outlines the primary methods provided by the API:
2009-07-25 15:03:58 +00:00
h4. gem(name, options = {})
2010-12-26 16:40:56 +00:00
Adds a +gem+ entry for the supplied gem to the generated applications +Gemfile+.
2009-07-25 15:03:58 +00:00
2011-04-14 00:58:26 +00:00
For example, if your application depends on the gems +bj+ and +nokogiri+:
2009-07-25 15:03:58 +00:00
<ruby>
gem "bj"
gem "nokogiri"
2009-07-25 15:03:58 +00:00
</ruby>
2011-04-14 00:58:26 +00:00
Please note that this will NOT install the gems for you. So you may want to run the +rake gems:install+ task too:
2009-07-25 15:03:58 +00:00
<ruby>
rake "gems:install"
</ruby>
And let Rails take care of installing the required gems if theyre not already installed.
2010-12-26 17:30:03 +00:00
h4. add_source(source, options = {})
Adds the given source to the generated application's +Gemfile+.
For example, if you need to source a gem from "http://code.whytheluckystiff.net":
<ruby>
add_source "http://code.whytheluckystiff.net"
</ruby>
2009-07-25 15:03:58 +00:00
h4. plugin(name, options = {})
Installs a plugin to the generated application.
2011-04-14 00:58:26 +00:00
Plugin can be installed from Git:
2009-07-25 15:03:58 +00:00
<ruby>
plugin 'authentication', :git => 'git://github.com/foor/bar.git'
</ruby>
2011-04-14 00:58:26 +00:00
You can even install plugins as git submodules:
2009-07-25 15:03:58 +00:00
<ruby>
plugin 'authentication', :git => 'git://github.com/foor/bar.git',
2009-07-25 15:03:58 +00:00
:submodule => true
</ruby>
Please note that you need to +git :init+ before you can install a plugin as a submodule.
2011-04-14 00:58:26 +00:00
Or use plain old SVN:
2009-07-25 15:03:58 +00:00
<ruby>
plugin 'usingsvn', :svn => 'svn://example.com/usingsvn/trunk'
2009-07-25 15:03:58 +00:00
</ruby>
h4. vendor/lib/file/initializer(filename, data = nil, &block)
Adds an initializer to the generated applications +config/initializers+ directory.
2011-04-14 00:58:26 +00:00
Lets say you like using +Object#not_nil?+ and +Object#not_blank?+:
2009-07-25 15:03:58 +00:00
<ruby>
initializer 'bloatlol.rb', <<-CODE
class Object
def not_nil?
!nil?
end
2009-07-25 15:03:58 +00:00
def not_blank?
!blank?
end
end
CODE
</ruby>
Similarly +lib()+ creates a file in the +lib/+ directory and +vendor()+ creates a file in the +vendor/+ directory.
2011-04-14 00:58:26 +00:00
There is even +file()+, which accepts a relative path from +Rails.root+ and creates all the directories/file needed:
2009-07-25 15:03:58 +00:00
<ruby>
file 'app/components/foo.rb', <<-CODE
class Foo
end
CODE
</ruby>
Thatll create +app/components+ directory and put +foo.rb+ in there.
h4. rakefile(filename, data = nil, &block)
2011-04-14 00:58:26 +00:00
Creates a new rake file under +lib/tasks+ with the supplied tasks:
2009-07-25 15:03:58 +00:00
<ruby>
rakefile("bootstrap.rake") do
<<-TASK
namespace :boot do
task :strap do
puts "i like boots!"
end
end
TASK
end
</ruby>
The above creates +lib/tasks/bootstrap.rake+ with a +boot:strap+ rake task.
h4. generate(what, args)
2011-04-14 00:58:26 +00:00
Runs the supplied rails generator with given arguments. For example, I love to scaffold some whenever Im playing with Rails:
2009-07-25 15:03:58 +00:00
<ruby>
generate(:scaffold, "person", "name:string", "address:text", "age:number")
</ruby>
h4. run(command)
2011-04-14 00:58:26 +00:00
Executes an arbitrary command. Just like the backticks. Let's say you want to remove the +public/index.html+ file:
2009-07-25 15:03:58 +00:00
<ruby>
run "rm public/index.html"
</ruby>
h4. rake(command, options = {})
2011-04-14 00:58:26 +00:00
Runs the supplied rake tasks in the Rails application. Let's say you want to migrate the database:
2009-07-25 15:03:58 +00:00
<ruby>
rake "db:migrate"
</ruby>
2011-04-14 00:58:26 +00:00
You can also run rake tasks with a different Rails environment:
2009-07-25 15:03:58 +00:00
<ruby>
rake "db:migrate", :env => 'production'
</ruby>
2011-04-14 00:58:26 +00:00
Or even use sudo:
2009-07-25 15:03:58 +00:00
<ruby>
rake "gems:install", :sudo => true
</ruby>
h4. route(routing_code)
2011-04-14 00:58:26 +00:00
This adds a routing entry to the +config/routes.rb+ file. In above steps, we generated a person scaffold and also removed +public/index.html+. Now to make +PeopleController#index+ as the default page for the application:
2009-07-25 15:03:58 +00:00
<ruby>
2010-12-26 16:40:56 +00:00
route "root :to => 'person#index'"
2009-07-25 15:03:58 +00:00
</ruby>
h4. inside(dir)
2011-02-20 16:01:12 +00:00
Enables you to run a command from the given directory. For example, if you have a copy of edge rails that you wish to symlink from your new apps, you can do this:
2009-07-25 15:03:58 +00:00
<ruby>
inside('vendor') do
run "ln -s ~/commit-rails/rails rails"
end
</ruby>
h4. ask(question)
2011-04-14 00:58:26 +00:00
+ask()+ gives you a chance to get some feedback from the user and use it in your templates. Lets say you want your user to name the new shiny library youre adding:
2009-07-25 15:03:58 +00:00
<ruby>
lib_name = ask("What do you want to call the shiny library ?")
lib_name << ".rb" unless lib_name.index(".rb")
lib lib_name, <<-CODE
class Shiny
end
CODE
</ruby>
h4. yes?(question) or no?(question)
2011-04-14 00:58:26 +00:00
These methods let you ask questions from templates and decide the flow based on the users answer. Lets say you want to freeze rails only if the user want to:
2009-07-25 15:03:58 +00:00
<ruby>
rake("rails:freeze:gems") if yes?("Freeze rails gems ?")
no?(question) acts just the opposite.
</ruby>
h4. git(:must => "-a love")
2011-04-14 00:58:26 +00:00
Rails templates let you run any git command:
2009-07-25 15:03:58 +00:00
<ruby>
git :init
git :add => "."
git :commit => "-a -m 'Initial commit'"
</ruby>
2009-04-17 13:28:46 +00:00
h3. Changelog
2009-07-25 15:03:58 +00:00
* April 29, 2009: Initial version by "Pratik":credits.html#lifo