Sha256: b2a1c7dd2f1d547315f209513471573a4b5f052772666104d133f07bccf57a31

Contents?: true

Size: 1015 Bytes

Versions: 7

Compression:

Stored size: 1015 Bytes

Contents

require 'rails'

module Frontend
  module Generators
    class InstallGenerator < ::Rails::Generators::Base

      desc "This generator installs the necessary config files, for all your services and base site meta tags."
      source_root File.expand_path('../../../../../', __FILE__)

      def copy_services
        say_status("copying", "Blank Services File", :green)
        copy_file "config/services.yml", "config/services.yml"
      end

      def copy_settings
        say_status("copying", "Blank Settings File", :green)
        copy_file "config/settings.yml", "config/settings.yml"
      end

      def copy_variables
        say_status("copying", "Blank Variables File", :green)
        copy_file "vendor/assets/stylesheets/variables.css.sass", "app/assets/stylesheets/variables.css.sass"
      end

      def copy_email_template
        say_status("copying", "Email Template", :green)
        copy_file "app/views/layouts/mail.html.haml", "app/views/layouts/mail.html.haml"
      end

    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
frontend-helpers-0.1.3 lib/generators/frontend/install/install_generator.rb
frontend-helpers-0.1.2 lib/generators/frontend/install/install_generator.rb
frontend-helpers-0.1.1 lib/generators/frontend/install/install_generator.rb
frontend-helpers-0.1.0 lib/generators/frontend/install/install_generator.rb
frontend-helpers-0.0.9.1 lib/generators/frontend/install/install_generator.rb
frontend-helpers-0.0.9 lib/generators/frontend/install/install_generator.rb
frontend-helpers-0.0.8 lib/generators/frontend/install/install_generator.rb