Skip to content

Instantly share code, notes, and snippets.

@peteonrails
Created September 7, 2009 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peteonrails/182433 to your computer and use it in GitHub Desktop.
Save peteonrails/182433 to your computer and use it in GitHub Desktop.
# This template represents what FasterAgile believes to be the best mix
# of components for ab-initio Rails projects. It includes:
# Mocks with factory_girl instead of fixtures; cucumber and shoulda; friendly_ids
# and canonical links for SEO; HAML and SASS; the Clearance engine; basic sass
# and haml starter files; my favorite plugins and initializers; some utility
# methods that I always use.
#
# Run this template like this:
# rails <myproject> -m fasteragile.rb
#
# Or if you want to live on the bleeding edge you can use the gist-based template:
# rails <myproject> -m http://gist.github.com/gists/182433
#
# Copyright 2009 Faster Agile, LLC
# Author: Peter Jackson
# http://www.fasteragile.com
# License: MIT License
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# Faster Agile's Translation: You may copy, use, and extend this template for any purpose,
# including commercial purposes, but you must leave this comment intact.
puts "Applying Faster Agile template. Copyright 2009 FasterAgile LLC."
git :init
git :add => "."
git :commit => "-a -m 'Initial Commit -- Before template apply'"
plugin 'acts_as_state_machine', :svn => 'http://elitists.textdriven.com/svn/plugins/acts_as_state_machine/trunk'
plugin 'jrails', :svn => 'http://ennerchi.googlecode.com/svn/trunk/plugins/jrails'
plugin 'yaml_mail_config', :svn => 'svn://rubyforge.org/var/svn/slantwise/yaml_mail_config/trunk yaml_mail_config'
run 'cp vendor/plugins/yaml_mail_config/templates/email.example.yml config/email.yml'
plugin 'hoptoad_notifier', :git => 'git://github.com/thoughtbot/hoptoad_notifier.git', :submodule => true
plugin 'paperclip', :git => 'git://github.com/thoughtbot/paperclip.git', :submodule => true
plugin 'factory_girl', :git => 'git://github.com/thoughtbot/factory_girl', :submodule => true
plugin 'shoulda', :git => 'git://github.com/thoughtbot/shoulda.git', :submodule => true
plugin 'high_voltage', :git => 'git://github.com/thoughtbot/high_voltage.git', :submodule => true
plugin 'limerick_rake', :git => 'git://github.com/thoughtbot/limerick_rake.git', :submodule => true
plugin 'db_populate', :git => 'git://github.com/ffmike/db-populate.git', :submodule => true
plugin 'paperclippolymorph', :git => 'git://github.com/heavysixer/paperclippolymorph.git', :submodule => true
plugin 'growlr', :git => 'git://github.com/vanntastic/growlr.git', :submodule => true
plugin "peteonrails-seo-kit", :git => "git://github.com/peteonrails/seo-kit.git", :submodule => true
git :submodule => "init"
gem 'will_paginate'
gem 'haml', :version => ">= 2.2.5"
gem "mbleigh-acts-as-taggable-on", :source => "http://gems.github.com", :lib => "acts-as-taggable-on"
gem "thoughtbot-clearance", :lib => 'clearance', :source => 'http://gems.github.com', :version => '0.8.2'
gem 'w3c_validators', :version => '0.9.3'
gem 'friendly_id'
gem 'fastercsv'
gem "peteonrails-simple_tooltips", :lib => "simple_tooltips",:source => 'http://gems.github.com'
gem "peteonrails-vote_fu", :source => "http://gems.github.com", :lib => "vote_fu"
rake("gems:install", :sudo => true)
rake("gems:unpack")
run("haml --rails .")
run 'mkdir app/views/pages'
file 'app/views/pages/home.html.haml',
%q{.mouseover1
This is the home page!
= tooltip_for "mouseover1", "Here's the hint!"
}
file 'app/views/layouts/application.html.haml',
%q{%html
%head
%title= application_title("FasterAgile", controller.controller_name, controller.action_name)
= yield :head
= stylesheet_link_tag "application", "tooltip"
= javascript_include_tag :defaults
%body
#flash= flash_notices
#header
#logo
= render :partial => "shared/logo"
.clearfix
#topnav
= render :partial => 'shared/topnav'
#outer-container
#main-content
= yield
.clearfloat
#footer
#footer-content.ctr
= render :partial => 'shared/footer'
= yield :javascript
= render :partial => 'shared/analytics'
}
file 'app/helpers/application_helper.rb',
%q{# ---
module ApplicationHelper
def application_title(name, controller, action)
"#{name} #{controller} #{action}"
end
def flash_notices
flash_types = [:error, :warning, :notice]
messages = ((flash_types & flash.keys).collect do |key|
"$.jGrowl('#{flash[key]}', { header: '#{I18n.t(key, :default => key.to_s)}', theme: '#{key.to_s}'});"
end.join("\n"))
if messages.size > 0
content_tag(:script, :type => "text/javascript") do
"$(document).ready(function() { #{messages} });"
end
else
""
end
end
end
}
run 'mkdir -p public/stylesheets/sass'
file 'public/stylesheets/sass/util.sass',
%q{.clearfix
:clear both
:width 100%
:height 0
}
file 'public/stylesheets/sass/navigation.sass',
%q{@import colors.sass
#topnav
:margin 0 auto
:width= !content_width
:height 100%
:padding 0px
.lefttab
:width auto
:margin-right= !tabmargin
:padding= !tabpadding
:float left
:font-weight bold
.righttab
:width auto
:margin-left= !tabmargin
:padding= !tabpadding
:float right
:font-weight bold
.selected
:background-color= !white
:color= !black
a
:color= !black
:text-decoration none
.unselected
:background-color= !black
:color= !white
a
:color= !white
:text-decoration none
}
file 'public/stylesheets/sass/application.sass',
%q{@import colors.sass
@import navigation.sass
@import util.sass
html, body
:height 100%
body
:font 100% Arial, Verdana, sans-serif
:font-size 14px
:background-color= !white
:margin 0
:padding 0
:text-align center
:color= !textcolor
#footer
:background url(../images/footer.jpg) repeat-x
:margin 0px
:width 100%
:height= !footer_height
:position relative
#footer-content
:width= !content_width
:margin 0 auto
:padding-top 20px
#header
:background url(../images/header.jpg) repeat-x
:height 99px
#logo
:margin 0px auto
:width= !content_width
:font-size 3.0em
:font-weight bold
:height 65px
#outer-container
:width= !content_width
:margin 0px auto
:background= !white
:text-align left
:min-height 70%
:position relative
#main-content
:padding 10px
#centerpanel
:margin-top 30px
:margin-left auto
:margin-right auto
:width 80%
:border #000 1px solid important
:color= !textcolor
:font-size 1.75em
.headline
:width 80%
.sub-headline
:font-size 0.75em
:font-weight bold
.message
:margin-top 20px
:font-size 0.75em
}
file 'public/robots.txt',
%q{# Ban all spiders from indeing the site until we are ready for SEO launch.
User-Agent: *
Disallow: /
}
file 'config/deploy.rb',
%q{set :stages, %w(staging production)
set :default_stage, 'staging'
require 'capistrano/ext/multistage'
before "deploy:setup", "db:password"
namespace :deploy do
desc "Default deploy - updated to run migrations"
task :default do
set :migrate_target, :latest
update_code
migrate
symlink
restart
end
desc "Run this after every successful deployment"
task :after_default do
cleanup
end
before :deploy do
if real_revision.empty?
raise "The tag, revision, or branch #{revision} does not exist."
end
end
end
namespace :db do
desc "Create database password in shared path"
task :password do
set :db_password, Proc.new { Capistrano::CLI.password_prompt("Remote database password: ") }
run "mkdir -p #{shared_path}/config"
put db_password, "#{shared_path}/config/dbpassword"
end
end
}
run 'mkdir config/deploy'
file 'config/deploy/staging.rb',
%q{# For migrations
set :rails_env, 'staging'
default_run_options[:pty] = true
# Who are we?
set :application, CHANGEME
set :repository, CHANGEME
set :scm, "git"
set :deploy_via, :remote_cache
set :branch, "staging"
set :group_writable, false
# Where to deploy to?
role :web, "staging.CHANGEME.com"
role :app, "staging.CHANGEME.com"
role :db, "staging.CHANGEME.com", :primary => true
# Deploy details
set :user, CHANGEME
set :deploy_to, "/home/#{user}/apps/#{application}"
set :use_sudo, false
set :checkout, 'export'
# We need to know how to use mongrel
set :mongrel_rails, '/usr/local/bin/mongrel_rails'
set :mongrel_cluster_config, "#{deploy_to}/#{current_dir}/config/mongrel_cluster_staging.yml"
namespace :deploy do
after "deploy:restart",
"deploy:railsplayground:fix_permissions",
"deploy:railsplayground:set_production" ,
"deploy:railsplayground:kill_dispatch_fcgi",
"deploy:railsplayground:copy_htaccess"
desc "RailsPlayground version of restart task."
task :restart do
railsplayground::kill_dispatch_fcgi
end
namespace :railsplayground do
desc "Uncomment the RAILS_ENV setting"
task :set_production do
run "sed -i.cap.orig -e 's/^# ENV/ENV/' #{release_path}/config/environment.rb"
end
desc "Kills Ruby instances on RailsPlayground"
task :kill_dispatch_fcgi do
run "pkill -9 -u #{user} -f dispatch.fcgi"
end
desc "Fix g-w issues with RailsPlayground"
task :fix_permissions do
run "cd #{current_path}; chmod -R g-w *"
end
desc "Copy over the RailsPlayground htaccess file"
task :copy_htaccess do
run "cp #{shared_path}/config/htaccess #{release_path}/public/.htaccess"
end
end
end
}
run "mkdir -p app/views/shared"
file "app/views/shared/_logo.html.haml", "#logo"
file "app/views/shared/_topnav.html.haml", "#topnav"
file "app/views/shared/_footer.html.haml", "#footer"
file "app/views/shared/_analytics.html.haml",
%q{%script{ :type => "text/javascript" }
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.%2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment