This file contains 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
# in gemfile i have these lines | |
gem 'sitemap_generator', '2.0.1.pre1' | |
gem 'carrierwave' | |
gem 'fog' |
This file contains 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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'open-uri' | |
require 'rexml/document' | |
require 'mechanize' | |
# ------------------------ | |
YOUR_GOOGLE_ACCOUNT = '[email protected]' |
This file contains 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
### in Terminal | |
# create rails app | |
rails new test_app | |
############ start: edit Gemfile ############## | |
#wrap sqlite3 in | |
group :test, :development do | |
gem 'sqlite3' | |
end |