Sha256: edd167a326414b5a74b4f237574eb99abcbac70a3304cc78142412c24814aadf
Contents?: true
Size: 523 Bytes
Versions: 3
Compression:
Stored size: 523 Bytes
Contents
module Capistrano module Memcached module Generators class ConfigGenerator < Rails::Generators::Base desc "Create local memcached configuration files for customization" source_root File.expand_path('../templates', __FILE__) argument :templates_path, type: :string, default: "config/deploy/templates", banner: "path to templates" def copy_template copy_file "memcached.erb", "#{templates_path}/memcached.erb" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems