Sha256: 2f86bc38d18d9cf7f4ad2495ab68de8328986c75db7de585f373b75d2401031b

Contents?: true

Size: 426 Bytes

Versions: 3

Compression:

Stored size: 426 Bytes

Contents

require 'rails/generators'

module Shellac
  module Generators
    class InstallGenerator < Rails::Generators::Base
            
      def generate
        copy_file "../templates/varnish.yml", "config/varnish.yml"
        
        puts "------------------------"
        puts "Now configure your varnish setup here:"
        puts "config/varnish.yml"
        puts "------------------------"
      end
      
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shellac-0.0.2.1 lib/generators/shellac/install_generator.rb
shellac-0.0.2 lib/generators/shellac/install_generator.rb
shellac-0.0.1 lib/generators/shellac/install_generator.rb