Created
February 22, 2009 09:28
-
-
Save jeroenvandijk/68417 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# More info on http://www.jeevidee.nl/instant_rails_application | |
# template.rb | |
in_root { run("rm public/index.html") } | |
# My plugins | |
plugin "dm_generator", :git => "git://github.com/jeroenvandijk/dm_generator.git -r amsterdam.rb" | |
plugin "dm_templates", :git => "git://github.com/jeroenvandijk/dm_templates.git -r amsterdam.rb" | |
plugin "dm_designs", :git => "git://github.com/jeroenvandijk/dm_designs.git" | |
# The templates uses features of make_resourceful that are currently only in my library | |
plugin "make_resourceful_i18n", :git => "git://github.com/jeroenvandijk/make_resourceful_i18n.git" | |
# Other plugins and gems | |
# plugin "haml", :git => "git://github.com/nex3/haml.git" | |
# plugin "compass", :git => "git://github.com/chriseppstein/compass.git" | |
# Install the example_shop | |
rake("dm:install[vendor/plugins/dm_designs/example_shop/shop.xmi]") | |
route "map.root :controller => 'stores'" | |
git :init | |
git :add => "." | |
git :commit => "-a -m 'Initial commit'" | |
in_root { run("mate .") } | |
# See the results | |
in_root { run "script/server 3000" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment