Skip to content

Instantly share code, notes, and snippets.

@yuheiomori
Created August 3, 2010 14:16
Show Gist options
  • Select an option

  • Save yuheiomori/506444 to your computer and use it in GitHub Desktop.

Select an option

Save yuheiomori/506444 to your computer and use it in GitHub Desktop.
run "rm public/index.html"
gem 'json'
gem 'oauth'
gem 'ezcrypto'
gem 'sqlite3-ruby', :lib => 'sqlite3'
rake 'gems:install'
plugin 'twitter-auth', :git => 'git://github.com/mbleigh/twitter-auth.git'
generate(:twitter_auth)
file '.gitignore', <<-IGNORE
.DS_Store
log/*.log
tmp/**/*
db/*.sqlite3
db/schema.rb
*~
IGNORE
file '.gems', <<-GEMS
oauth
ezcrypto
json
GEMS
rake 'db:migrate'
git :init
git :add => "."
git :commit => "-a -m 'first commit'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment