2007-03-26 12:36:09 -04:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
2007-05-09 01:05:05 -04:00
|
|
|
require 'optparse'
|
2009-05-20 16:03:15 -04:00
|
|
|
require 'fileutils'
|
2007-05-09 01:05:05 -04:00
|
|
|
|
|
|
|
OptionParser.new do |opts|
|
|
|
|
opts.banner = "Usage: #{File.basename($0)} [path]"
|
|
|
|
|
|
|
|
opts.on("-h", "--help", "Displays this help info") do
|
|
|
|
puts opts
|
|
|
|
exit 0
|
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
|
|
|
opts.parse!(ARGV)
|
|
|
|
rescue OptionParser::ParseError => e
|
|
|
|
warn e.message
|
|
|
|
puts opts
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-03-26 12:36:09 -04:00
|
|
|
if ARGV.empty?
|
2007-04-19 23:05:34 -04:00
|
|
|
abort "Please specify the directory to capify, e.g. `#{File.basename($0)} .'"
|
2007-03-26 12:36:09 -04:00
|
|
|
elsif !File.exists?(ARGV.first)
|
|
|
|
abort "`#{ARGV.first}' does not exist."
|
|
|
|
elsif !File.directory?(ARGV.first)
|
|
|
|
abort "`#{ARGV.first}' is not a directory."
|
|
|
|
elsif ARGV.length > 1
|
2007-04-19 23:05:34 -04:00
|
|
|
abort "Too many arguments; please specify only the directory to capify."
|
2007-03-26 12:36:09 -04:00
|
|
|
end
|
|
|
|
|
2007-04-19 23:02:30 -04:00
|
|
|
def unindent(string)
|
|
|
|
indentation = string[/\A\s*/]
|
|
|
|
string.strip.gsub(/^#{indentation}/, "")
|
|
|
|
end
|
2007-03-26 12:36:09 -04:00
|
|
|
|
2007-04-19 23:02:30 -04:00
|
|
|
files = {
|
2009-07-27 09:53:49 -04:00
|
|
|
|
2007-04-19 23:02:30 -04:00
|
|
|
"Capfile" => unindent(<<-FILE),
|
|
|
|
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
|
2007-09-01 11:03:58 -04:00
|
|
|
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
|
2007-04-19 23:02:30 -04:00
|
|
|
load 'config/deploy'
|
|
|
|
FILE
|
2007-03-26 12:36:09 -04:00
|
|
|
|
2007-04-19 23:02:30 -04:00
|
|
|
"config/deploy.rb" => unindent(<<-FILE),
|
2009-07-27 09:53:49 -04:00
|
|
|
set :application, "set your application name here"
|
|
|
|
set :repository, "set your repository location here"
|
|
|
|
|
2009-08-24 12:31:07 -04:00
|
|
|
set :scm, :subversion
|
|
|
|
# Or: `accurev`, `bzr`, `cvs`, `darcs`, `git`, `mercurial`, `perforce`, `subversion` or `none`
|
2009-07-27 09:53:49 -04:00
|
|
|
|
|
|
|
role :web, "your web-server here" # Your HTTP server, Apache/etc
|
|
|
|
role :app, "your app-server here" # This may be the same as your `Web` server
|
2009-08-27 07:31:42 -04:00
|
|
|
role :db, "your primary db-server here", :primary => true # This is where Rails migrations will run
|
|
|
|
role :db, "your slave db-server here"
|
2009-08-27 09:24:53 -04:00
|
|
|
|
|
|
|
# If you are using Passenger mod_rails uncomment this:
|
|
|
|
# if you're still using the script/reapear helper you will need
|
|
|
|
# these http://github.com/rails/irs_process_scripts
|
|
|
|
|
|
|
|
# namespace :deploy do
|
|
|
|
# task :start {}
|
|
|
|
# task :stop {}
|
|
|
|
# task :restart, :roles => :app, :except => { :no_release => true } do
|
|
|
|
# run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
2009-08-24 12:31:07 -04:00
|
|
|
FILE
|
2007-04-19 23:02:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
base = ARGV.shift
|
2007-03-26 12:36:09 -04:00
|
|
|
files.each do |file, content|
|
|
|
|
file = File.join(base, file)
|
|
|
|
if File.exists?(file)
|
|
|
|
warn "[skip] `#{file}' already exists"
|
|
|
|
elsif File.exists?(file.downcase)
|
|
|
|
warn "[skip] `#{file.downcase}' exists, which could conflict with `#{file}'"
|
|
|
|
elsif !File.exists?(File.dirname(file))
|
2009-05-20 16:03:15 -04:00
|
|
|
FileUtils.mkdir(File.dirname(file))
|
2007-03-26 12:36:09 -04:00
|
|
|
else
|
|
|
|
puts "[add] writing `#{file}'"
|
|
|
|
File.open(file, "w") { |f| f.write(content) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-04-19 23:05:34 -04:00
|
|
|
puts "[done] capified!"
|