2010-10-19 17:26:48 -04:00
|
|
|
require 'digest/md5'
|
2011-03-27 19:42:30 -04:00
|
|
|
require 'active_support/core_ext/string/strip'
|
2013-04-01 16:23:18 -04:00
|
|
|
require 'rails/version' unless defined?(Rails::VERSION)
|
2010-10-19 17:26:48 -04:00
|
|
|
require 'open-uri'
|
|
|
|
require 'uri'
|
2013-11-09 14:54:33 -05:00
|
|
|
require 'rails/generators'
|
2013-11-01 06:11:52 -04:00
|
|
|
require 'active_support/core_ext/array/extract_options'
|
2010-10-19 17:26:48 -04:00
|
|
|
|
|
|
|
module Rails
|
|
|
|
module Generators
|
2012-10-07 16:36:39 -04:00
|
|
|
class AppBase < Base # :nodoc:
|
2011-09-07 16:27:32 -04:00
|
|
|
DATABASES = %w( mysql oracle postgresql sqlite3 frontbase ibm_db sqlserver )
|
2011-06-20 19:52:28 -04:00
|
|
|
JDBC_DATABASES = %w( jdbcmysql jdbcsqlite3 jdbcpostgresql jdbc )
|
2011-04-23 14:47:19 -04:00
|
|
|
DATABASES.concat(JDBC_DATABASES)
|
2010-10-26 18:16:57 -04:00
|
|
|
|
2010-10-23 14:42:01 -04:00
|
|
|
attr_accessor :rails_template
|
|
|
|
add_shebang_option!
|
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
argument :app_path, type: :string
|
2010-10-23 14:42:01 -04:00
|
|
|
|
2013-09-07 16:50:54 -04:00
|
|
|
def self.strict_args_position
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2010-10-23 14:42:01 -04:00
|
|
|
def self.add_shared_options_for(name)
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :template, type: :string, aliases: '-m',
|
2013-02-06 11:31:50 -05:00
|
|
|
desc: "Path to some #{name} template (can be a filesystem path or URL)"
|
2010-10-23 14:42:01 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :skip_gemfile, type: :boolean, default: false,
|
|
|
|
desc: "Don't create a Gemfile"
|
2010-10-23 14:42:01 -04:00
|
|
|
|
2013-01-01 12:36:26 -05:00
|
|
|
class_option :skip_bundle, type: :boolean, aliases: '-B', default: false,
|
2012-09-12 21:15:38 -04:00
|
|
|
desc: "Don't run bundle install"
|
2011-05-13 20:36:29 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :skip_git, type: :boolean, aliases: '-G', default: false,
|
|
|
|
desc: 'Skip .gitignore file'
|
2010-10-23 14:42:01 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :skip_keeps, type: :boolean, default: false,
|
|
|
|
desc: 'Skip source control .keep files'
|
2010-10-26 18:16:57 -04:00
|
|
|
|
2014-12-31 08:10:26 -05:00
|
|
|
class_option :skip_action_mailer, type: :boolean, aliases: "-M",
|
|
|
|
default: false,
|
|
|
|
desc: "Skip Action Mailer files"
|
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :skip_active_record, type: :boolean, aliases: '-O', default: false,
|
|
|
|
desc: 'Skip Active Record files'
|
2011-06-29 08:39:41 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :skip_sprockets, type: :boolean, aliases: '-S', default: false,
|
|
|
|
desc: 'Skip Sprockets files'
|
2010-10-26 18:16:57 -04:00
|
|
|
|
2013-11-02 14:25:02 -04:00
|
|
|
class_option :skip_spring, type: :boolean, default: false,
|
|
|
|
desc: "Don't install Spring application preloader"
|
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :database, type: :string, aliases: '-d', default: 'sqlite3',
|
|
|
|
desc: "Preconfigure for selected database (options: #{DATABASES.join('/')})"
|
2011-05-01 18:59:57 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :javascript, type: :string, aliases: '-j', default: 'jquery',
|
|
|
|
desc: 'Preconfigure for selected JavaScript library'
|
2010-10-26 16:22:15 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :skip_javascript, type: :boolean, aliases: '-J', default: false,
|
|
|
|
desc: 'Skip JavaScript files'
|
2011-08-23 06:10:37 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :dev, type: :boolean, default: false,
|
|
|
|
desc: "Setup the #{name} with Gemfile pointing to your Rails checkout"
|
2010-10-23 14:42:01 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :edge, type: :boolean, default: false,
|
|
|
|
desc: "Setup the #{name} with Gemfile pointing to Rails repository"
|
2010-11-02 09:52:08 -04:00
|
|
|
|
2014-10-26 21:47:47 -04:00
|
|
|
class_option :skip_turbolinks, type: :boolean, default: false,
|
|
|
|
desc: 'Skip turbolinks gem'
|
|
|
|
|
2015-01-27 17:59:48 -05:00
|
|
|
class_option :skip_test, type: :boolean, aliases: '-T', default: false,
|
2015-01-29 15:44:26 -05:00
|
|
|
desc: 'Skip test files'
|
2012-09-12 21:15:38 -04:00
|
|
|
|
2013-02-04 16:25:44 -05:00
|
|
|
class_option :rc, type: :string, default: false,
|
|
|
|
desc: "Path to file containing extra configuration options for rails command"
|
|
|
|
|
2013-02-02 09:51:17 -05:00
|
|
|
class_option :no_rc, type: :boolean, default: false,
|
|
|
|
desc: 'Skip loading of extra configuration options from .railsrc file'
|
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
class_option :help, type: :boolean, aliases: '-h', group: :rails,
|
|
|
|
desc: 'Show this help message and quit'
|
2010-10-23 14:42:01 -04:00
|
|
|
end
|
|
|
|
|
2010-10-19 17:26:48 -04:00
|
|
|
def initialize(*args)
|
2014-10-26 21:47:47 -04:00
|
|
|
@gem_filter = lambda { |gem| true }
|
2013-10-31 17:59:56 -04:00
|
|
|
@extra_entries = []
|
2010-10-19 17:26:48 -04:00
|
|
|
super
|
2011-06-15 13:59:11 -04:00
|
|
|
convert_database_option_for_jruby
|
2010-10-19 17:26:48 -04:00
|
|
|
end
|
|
|
|
|
2011-04-13 10:19:46 -04:00
|
|
|
protected
|
|
|
|
|
2013-11-01 06:11:52 -04:00
|
|
|
def gemfile_entry(name, *args)
|
|
|
|
options = args.extract_options!
|
|
|
|
version = args.first
|
|
|
|
github = options[:github]
|
|
|
|
path = options[:path]
|
|
|
|
|
2013-10-31 17:59:56 -04:00
|
|
|
if github
|
|
|
|
@extra_entries << GemfileEntry.github(name, github)
|
|
|
|
elsif path
|
|
|
|
@extra_entries << GemfileEntry.path(name, path)
|
|
|
|
else
|
|
|
|
@extra_entries << GemfileEntry.version(name, version)
|
|
|
|
end
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2013-10-28 20:10:00 -04:00
|
|
|
def gemfile_entries
|
2014-06-17 19:16:04 -04:00
|
|
|
[rails_gemfile_entry,
|
|
|
|
database_gemfile_entry,
|
|
|
|
assets_gemfile_entry,
|
|
|
|
javascript_gemfile_entry,
|
|
|
|
jbuilder_gemfile_entry,
|
2014-07-23 13:24:16 -04:00
|
|
|
psych_gemfile_entry,
|
2014-06-17 19:16:04 -04:00
|
|
|
@extra_entries].flatten.find_all(&@gem_filter)
|
2013-10-31 14:46:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def add_gem_entry_filter
|
2013-11-21 19:11:26 -05:00
|
|
|
@gem_filter = lambda { |next_filter, entry|
|
2013-10-31 14:46:11 -04:00
|
|
|
yield(entry) && next_filter.call(entry)
|
|
|
|
}.curry[@gem_filter]
|
2013-10-28 20:10:00 -04:00
|
|
|
end
|
|
|
|
|
2011-04-13 10:19:46 -04:00
|
|
|
def builder
|
|
|
|
@builder ||= begin
|
|
|
|
builder_class = get_builder_class
|
2015-01-31 23:12:37 -05:00
|
|
|
builder_class.include(ActionMethods)
|
2011-04-13 10:19:46 -04:00
|
|
|
builder_class.new(self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def build(meth, *args)
|
|
|
|
builder.send(meth, *args) if builder.respond_to?(meth)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_root
|
|
|
|
valid_const?
|
|
|
|
|
|
|
|
empty_directory '.'
|
|
|
|
FileUtils.cd(destination_root) unless options[:pretend]
|
|
|
|
end
|
|
|
|
|
|
|
|
def apply_rails_template
|
2014-02-14 14:38:26 -05:00
|
|
|
apply rails_template if rails_template
|
2011-04-13 10:19:46 -04:00
|
|
|
rescue Thor::Error, LoadError, Errno::ENOENT => e
|
|
|
|
raise Error, "The template [#{rails_template}] could not be loaded. Error: #{e}"
|
|
|
|
end
|
2013-11-04 17:55:21 -05:00
|
|
|
|
2011-04-13 10:19:46 -04:00
|
|
|
def set_default_accessors!
|
2013-10-27 13:31:49 -04:00
|
|
|
self.destination_root = File.expand_path(app_path, destination_root)
|
2014-02-14 14:38:26 -05:00
|
|
|
self.rails_template = case options[:template]
|
|
|
|
when /^https?:\/\//
|
|
|
|
options[:template]
|
|
|
|
when String
|
|
|
|
File.expand_path(options[:template], Dir.pwd)
|
|
|
|
else
|
|
|
|
options[:template]
|
2011-04-13 10:19:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def database_gemfile_entry
|
2013-10-27 14:16:09 -04:00
|
|
|
return [] if options[:skip_active_record]
|
2013-10-27 20:47:21 -04:00
|
|
|
GemfileEntry.version gem_for_database, nil,
|
|
|
|
"Use #{options[:database]} as the database for Active Record"
|
2011-04-13 10:19:46 -04:00
|
|
|
end
|
|
|
|
|
2011-05-06 11:29:15 -04:00
|
|
|
def include_all_railties?
|
2015-01-27 17:59:48 -05:00
|
|
|
options.values_at(:skip_active_record, :skip_action_mailer, :skip_test, :skip_sprockets).none?
|
2011-05-06 11:29:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def comment_if(value)
|
2011-05-25 19:18:29 -04:00
|
|
|
options[value] ? '# ' : ''
|
2011-05-06 11:29:15 -04:00
|
|
|
end
|
|
|
|
|
2014-03-21 19:26:02 -04:00
|
|
|
def sqlite3?
|
|
|
|
!options[:skip_active_record] && options[:database] == 'sqlite3'
|
|
|
|
end
|
|
|
|
|
2013-11-01 09:58:40 -04:00
|
|
|
class GemfileEntry < Struct.new(:name, :version, :comment, :options, :commented_out)
|
|
|
|
def initialize(name, version, comment, options = {}, commented_out = false)
|
2013-10-27 14:50:25 -04:00
|
|
|
super
|
2013-10-27 14:11:54 -04:00
|
|
|
end
|
|
|
|
|
2014-12-12 14:23:13 -05:00
|
|
|
def self.github(name, github, branch = nil, comment = nil)
|
|
|
|
if branch
|
|
|
|
new(name, nil, comment, github: github, branch: branch)
|
|
|
|
else
|
|
|
|
new(name, nil, comment, github: github)
|
|
|
|
end
|
2013-10-27 14:11:54 -04:00
|
|
|
end
|
|
|
|
|
2013-10-27 14:50:25 -04:00
|
|
|
def self.version(name, version, comment = nil)
|
2013-11-01 09:58:40 -04:00
|
|
|
new(name, version, comment)
|
2013-10-27 14:50:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.path(name, path, comment = nil)
|
2013-11-01 09:58:40 -04:00
|
|
|
new(name, nil, comment, path: path)
|
2013-10-27 14:50:25 -04:00
|
|
|
end
|
2013-10-27 14:11:54 -04:00
|
|
|
end
|
|
|
|
|
2011-04-13 10:19:46 -04:00
|
|
|
def rails_gemfile_entry
|
|
|
|
if options.dev?
|
2014-12-12 15:49:45 -05:00
|
|
|
[
|
|
|
|
GemfileEntry.path('rails', Rails::Generators::RAILS_DEV_PATH),
|
|
|
|
GemfileEntry.github('arel', 'rails/arel')
|
|
|
|
]
|
2011-04-13 10:19:46 -04:00
|
|
|
elsif options.edge?
|
2014-12-12 15:49:45 -05:00
|
|
|
[
|
|
|
|
GemfileEntry.github('rails', 'rails/rails'),
|
|
|
|
GemfileEntry.github('arel', 'rails/arel')
|
|
|
|
]
|
2011-04-13 10:19:46 -04:00
|
|
|
else
|
2013-10-27 15:29:10 -04:00
|
|
|
[GemfileEntry.version('rails',
|
|
|
|
Rails::VERSION::STRING,
|
|
|
|
"Bundle edge Rails instead: gem 'rails', github: 'rails/rails'")]
|
2011-04-13 10:19:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def gem_for_database
|
2011-09-07 16:27:32 -04:00
|
|
|
# %w( mysql oracle postgresql sqlite3 frontbase ibm_db sqlserver jdbcmysql jdbcsqlite3 jdbcpostgresql )
|
2011-04-13 10:19:46 -04:00
|
|
|
case options[:database]
|
2011-10-13 13:16:50 -04:00
|
|
|
when "oracle" then "ruby-oci8"
|
|
|
|
when "postgresql" then "pg"
|
|
|
|
when "frontbase" then "ruby-frontbase"
|
|
|
|
when "mysql" then "mysql2"
|
|
|
|
when "sqlserver" then "activerecord-sqlserver-adapter"
|
2011-06-20 19:52:28 -04:00
|
|
|
when "jdbcmysql" then "activerecord-jdbcmysql-adapter"
|
|
|
|
when "jdbcsqlite3" then "activerecord-jdbcsqlite3-adapter"
|
|
|
|
when "jdbcpostgresql" then "activerecord-jdbcpostgresql-adapter"
|
|
|
|
when "jdbc" then "activerecord-jdbc-adapter"
|
2011-04-13 10:19:46 -04:00
|
|
|
else options[:database]
|
|
|
|
end
|
|
|
|
end
|
2011-05-02 02:23:31 -04:00
|
|
|
|
2011-06-15 13:59:11 -04:00
|
|
|
def convert_database_option_for_jruby
|
|
|
|
if defined?(JRUBY_VERSION)
|
|
|
|
case options[:database]
|
|
|
|
when "oracle" then options[:database].replace "jdbc"
|
|
|
|
when "postgresql" then options[:database].replace "jdbcpostgresql"
|
|
|
|
when "mysql" then options[:database].replace "jdbcmysql"
|
|
|
|
when "sqlite3" then options[:database].replace "jdbcsqlite3"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-07-01 14:21:08 -04:00
|
|
|
def assets_gemfile_entry
|
2013-10-27 14:50:25 -04:00
|
|
|
return [] if options[:skip_sprockets]
|
2011-12-17 06:51:38 -05:00
|
|
|
|
2013-10-27 14:50:25 -04:00
|
|
|
gems = []
|
2014-12-12 17:48:44 -05:00
|
|
|
gems << GemfileEntry.version('sass-rails', '~> 5.0',
|
2013-10-27 14:50:25 -04:00
|
|
|
'Use SCSS for stylesheets')
|
2013-03-27 15:12:26 -04:00
|
|
|
|
2013-10-27 15:12:56 -04:00
|
|
|
gems << GemfileEntry.version('uglifier',
|
2013-10-27 14:50:25 -04:00
|
|
|
'>= 1.3.0',
|
|
|
|
'Use Uglifier as compressor for JavaScript assets')
|
2013-04-26 08:17:05 -04:00
|
|
|
|
2013-10-27 14:50:25 -04:00
|
|
|
gems
|
2011-07-01 14:21:08 -04:00
|
|
|
end
|
|
|
|
|
2013-10-27 15:29:10 -04:00
|
|
|
def jbuilder_gemfile_entry
|
|
|
|
comment = 'Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder'
|
2013-12-20 10:35:32 -05:00
|
|
|
GemfileEntry.version('jbuilder', '~> 2.0', comment)
|
2013-10-27 15:29:10 -04:00
|
|
|
end
|
|
|
|
|
2013-03-25 01:31:48 -04:00
|
|
|
def coffee_gemfile_entry
|
2014-10-12 21:27:27 -04:00
|
|
|
comment = 'Use CoffeeScript for .coffee assets and views'
|
2013-04-11 11:47:13 -04:00
|
|
|
if options.dev? || options.edge?
|
2014-12-12 14:23:13 -05:00
|
|
|
GemfileEntry.github 'coffee-rails', 'rails/coffee-rails', nil, comment
|
2013-03-25 01:31:48 -04:00
|
|
|
else
|
2014-10-12 21:27:27 -04:00
|
|
|
GemfileEntry.version 'coffee-rails', '~> 4.1.0', comment
|
2013-03-25 01:31:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-06-21 10:18:50 -04:00
|
|
|
def javascript_gemfile_entry
|
2013-10-27 14:50:25 -04:00
|
|
|
if options[:skip_javascript]
|
|
|
|
[]
|
|
|
|
else
|
|
|
|
gems = [coffee_gemfile_entry, javascript_runtime_gemfile_entry]
|
2014-11-25 19:34:10 -05:00
|
|
|
gems << GemfileEntry.version("#{options[:javascript]}-rails", nil,
|
|
|
|
"Use #{options[:javascript]} as the JavaScript library")
|
2013-10-27 14:50:25 -04:00
|
|
|
|
2014-10-26 21:47:47 -04:00
|
|
|
unless options[:skip_turbolinks]
|
|
|
|
gems << GemfileEntry.version("turbolinks", nil,
|
|
|
|
"Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks")
|
|
|
|
end
|
|
|
|
|
2013-10-27 15:29:10 -04:00
|
|
|
gems
|
2012-10-04 14:22:18 -04:00
|
|
|
end
|
2011-05-01 18:59:57 -04:00
|
|
|
end
|
|
|
|
|
2013-03-27 23:36:11 -04:00
|
|
|
def javascript_runtime_gemfile_entry
|
2013-10-27 14:50:25 -04:00
|
|
|
comment = 'See https://github.com/sstephenson/execjs#readme for more supported runtimes'
|
2013-10-27 18:07:10 -04:00
|
|
|
if defined?(JRUBY_VERSION)
|
2013-11-01 09:59:47 -04:00
|
|
|
GemfileEntry.version 'therubyrhino', nil, comment
|
2012-01-12 21:58:25 -05:00
|
|
|
else
|
2013-11-01 09:58:40 -04:00
|
|
|
GemfileEntry.new 'therubyracer', nil, comment, { platforms: :ruby }, true
|
2012-01-12 21:58:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-23 13:24:16 -04:00
|
|
|
def psych_gemfile_entry
|
|
|
|
return [] unless defined?(Rubinius)
|
|
|
|
|
|
|
|
comment = 'Use Psych as the YAML engine, instead of Syck, so serialized ' \
|
|
|
|
'data can be read safely from different rubies (see http://git.io/uuLVag)'
|
|
|
|
GemfileEntry.new('psych', '~> 2.0', comment, platforms: :rbx)
|
|
|
|
end
|
|
|
|
|
2011-05-12 18:43:43 -04:00
|
|
|
def bundle_command(command)
|
2011-05-12 18:57:16 -04:00
|
|
|
say_status :run, "bundle #{command}"
|
2011-06-10 17:43:24 -04:00
|
|
|
|
2011-06-10 19:18:08 -04:00
|
|
|
# We are going to shell out rather than invoking Bundler::CLI.new(command)
|
2011-06-10 17:43:24 -04:00
|
|
|
# because `rails new` loads the Thor gem and on the other hand bundler uses
|
|
|
|
# its own vendored Thor, which could be a different version. Running both
|
|
|
|
# things in the same process is a recipe for a night with paracetamol.
|
|
|
|
#
|
|
|
|
# We use backticks and #print here instead of vanilla #system because it
|
|
|
|
# is easier to silence stdout in the existing test suite this way. The
|
|
|
|
# end-user gets the bundler commands called anyway, so no big deal.
|
|
|
|
#
|
2012-06-25 00:57:11 -04:00
|
|
|
# We unset temporary bundler variables to load proper bundler and Gemfile.
|
|
|
|
#
|
2011-06-10 17:43:24 -04:00
|
|
|
# Thanks to James Tucker for the Gem tricks involved in this call.
|
2012-06-25 00:57:11 -04:00
|
|
|
_bundle_command = Gem.bin_path('bundler', 'bundle')
|
|
|
|
|
2012-09-01 14:08:08 -04:00
|
|
|
require 'bundler'
|
2012-05-16 06:35:12 -04:00
|
|
|
Bundler.with_clean_env do
|
2014-02-12 02:11:02 -05:00
|
|
|
output = `"#{Gem.ruby}" "#{_bundle_command}" #{command}`
|
|
|
|
print output unless options[:quiet]
|
2012-05-16 06:35:12 -04:00
|
|
|
end
|
2011-05-12 18:43:43 -04:00
|
|
|
end
|
|
|
|
|
2013-11-02 14:25:02 -04:00
|
|
|
def bundle_install?
|
|
|
|
!(options[:skip_gemfile] || options[:skip_bundle] || options[:pretend])
|
|
|
|
end
|
|
|
|
|
|
|
|
def spring_install?
|
2014-11-16 13:42:29 -05:00
|
|
|
!options[:skip_spring] && Process.respond_to?(:fork) && !RUBY_PLATFORM.include?("cygwin")
|
2013-11-02 14:25:02 -04:00
|
|
|
end
|
|
|
|
|
2011-05-12 18:43:43 -04:00
|
|
|
def run_bundle
|
2013-11-02 14:25:02 -04:00
|
|
|
bundle_command('install') if bundle_install?
|
|
|
|
end
|
|
|
|
|
|
|
|
def generate_spring_binstubs
|
|
|
|
if bundle_install? && spring_install?
|
|
|
|
bundle_command("exec spring binstub --all")
|
|
|
|
end
|
2011-04-13 10:19:46 -04:00
|
|
|
end
|
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
def empty_directory_with_keep_file(destination, config = {})
|
2011-04-13 10:19:46 -04:00
|
|
|
empty_directory(destination, config)
|
2012-09-12 21:15:38 -04:00
|
|
|
keep_file(destination)
|
2011-04-13 10:19:46 -04:00
|
|
|
end
|
2011-05-02 02:23:31 -04:00
|
|
|
|
2012-09-12 21:15:38 -04:00
|
|
|
def keep_file(destination)
|
|
|
|
create_file("#{destination}/.keep") unless options[:skip_keeps]
|
2011-04-13 10:19:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-05-02 02:23:31 -04:00
|
|
|
end
|