Skip to content

Instantly share code, notes, and snippets.

@alexshk
Created July 7, 2010 20:46
Show Gist options
  • Save alexshk/467251 to your computer and use it in GitHub Desktop.
Save alexshk/467251 to your computer and use it in GitHub Desktop.
# set up the databases
rake "db:create", :env => 'development'
# bundler
file 'Gemfile', %{
source :gemcutter
gem "mysql", "2.8.1"
gem "rails", "~> 2.3.8"
gem "authlogic"
gem "haml"
gem "formtastic"
gem "will_paginate"
gem "russian"
}.strip
append_file '/config/preinitializer.rb', %{
begin
require "rubygems"
require "bundler"
rescue LoadError
raise "Could not load the bundler gem. Install it with `gem install bundler`."
end
if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.24")
raise RuntimeError, "Your bundler version is too old." +
"Run `gem install bundler` to upgrade."
end
begin
# Set up load paths for all bundled gems
ENV["BUNDLE_GEMFILE"] = File.expand_path("../../Gemfile", __FILE__)
Bundler.setup
rescue Bundler::GemNotFound
raise RuntimeError, "Bundler couldn't find some gems." +
"Did you run `bundle install`?"
end
}.strip
gsub_file 'config/boot.rb', "Rails.boot!", %{
class Rails::Boot
def run
load_initializer
Rails::Initializer.class_eval do
def load_gems
@bundler_loaded ||= Bundler.require :default, Rails.env
end
end
Rails::Initializer.run(:set_load_path)
end
end
Rails.boot!
}
run "bundle install"
# haml
run "haml --rails ."
# ft
generate :formtastic
# remove unneeded files from public directory
run "rm public/index.html"
run "rm public/images/rails.png"
# set up git
file ".gitignore", <<-END
.DS_Store
log/*.log
tmp/**/*
config/database.yml
db/*.sqlite3
db/schema.rb
public/system/*
END
run "touch tmp/.gitignore log/.gitignore vendor/.gitignore"
run "cp config/database.yml config/database.example"
git :init
git :add => "."
git :commit => "-a -m 'create initial application'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment