Sha256: 2d60a575d05f3b102f40d7f24bd84ec258975d021b682d613ea892126f3b4990

Contents?: true

Size: 767 Bytes

Versions: 3

Compression:

Stored size: 767 Bytes

Contents

module Capistrano3
  module NginxUnicorn
    module Generators
      class ConfigGenerator < Rails::Generators::Base
        desc "Create local nginx and unicorn 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 "nginx_conf.erb", "#{templates_path}/nginx_conf.erb"
          copy_file "unicorn.rb.erb", "#{templates_path}/unicorn.rb.erb"
          copy_file "unicorn_init.erb", "#{templates_path}/unicorn_init.erb"
          copy_file "logrotate.erb", "#{templates_path}/logrotate.erb"
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
capistrano3-nginx_unicorn-0.1 lib/generators/capistrano3/nginx_unicorn/config_generator.rb
capistrano3-nginx_unicorn-0.0.7 lib/generators/capistrano3/nginx_unicorn/config_generator.rb
capistrano3-nginx_unicorn-0.0.6 lib/generators/capistrano3/nginx_unicorn/config_generator.rb