Sha256: 533f036ff261d698073540fd06eaf7f47a2384a23f8e862766e4354d696252f2
Contents?: true
Size: 1.88 KB
Versions: 1
Compression:
Stored size: 1.88 KB
Contents
%w{colored}.each do |component| if Gem::Specification.find_all_by_name(component).empty? run "gem install #{component}" Gem.refresh Gem::Specification.find_by_name(component).activate end end require "rails" require "colored" require "bundler" # Directories for template partials and static files @template_root = File.expand_path(File.join(File.dirname(__FILE__))) @partials = File.join(@template_root, 'partials') @static_files = File.join(@template_root, 'files') # Copy a static file from the template into the new application def copy_static_file(path) # puts "Installing #{path}...".magenta remove_file path file path, File.read(File.join(@static_files, path)) # puts "\n" end def apply_n(partial) apply "#{@partials}/_#{partial}.rb" end def would_you_like?(question) answer = ask("#{question} [y,n]".red) case answer.downcase when "yes", "y" true when "no", "n" false else would_you_like?(question) end end def ask_unless_test(*params) ask(*params) end puts "\n=========================================================" puts " Pah".yellow.bold puts "=========================================================\n" # TODO: timezone, Add rspec extensions apply_n :git apply_n :cleanup apply_n :gems apply_n :database apply_n :rspec apply_n :default apply_n :stylesheets apply_n :secure_headers apply_n :omniauth apply_n :capybara apply_n :generators apply_n :letter_opener apply_n :canonical_host apply_n :rvm apply_n :unicorn apply_n :integration apply_n :finish apply_n :heroku # apply_n :omniauth # TODO: add spec support files # TODO: take care of facebook when user is not logged in on facebook (when app) puts "\n=========================================================" puts " CONGRATS! INSTALLATION COMPLETE!".yellow.bold puts "=========================================================\n\n\n" def run_bundle; end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pah-0.0.4 | lib/pah/template.rb |