Sha256: e6f2277c964378c74140975cfe6d0be6b2037b61d78a1b165b4de390afeb0374

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

require 'generators/nifty'

module Nifty
  module Generators
    class LayoutGenerator < Base
      argument :layout_name, :type => :string, :default => 'application', :banner => 'layout_name'

      class_option :haml, :desc => 'Generate HAML for view, and SASS for stylesheet.', :type => :boolean

      def create_layout
        if options.haml?
          template 'layout.html.haml', "app/views/layouts/#{file_name}.html.haml"
          copy_file 'stylesheet.sass', "public/stylesheets/sass/#{file_name}.sass"
        else
          template 'layout.html.erb', "app/views/layouts/#{file_name}.html.erb"
          copy_file 'stylesheet.css', "public/stylesheets/#{file_name}.css"
          copy_file 'char_limit_form.js', "public/javascripts/edition_mod.js"
        end
        copy_file 'layout_helper.rb', 'app/helpers/layout_helper.rb'
        copy_file 'error_messages_helper.rb', 'app/helpers/error_messages_helper.rb'
      end

      private

      def file_name
        layout_name.underscore
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
flockonus-nifty-generators-0.0.9 lib/generators/nifty/layout/layout_generator.rb
flockonus-nifty-generators-0.0.8 lib/generators/nifty/layout/layout_generator.rb
flockonus-nifty-generators-0.0.7 lib/generators/nifty/layout/layout_generator.rb
flockonus-nifty-generators-0.0.6 lib/generators/nifty/layout/layout_generator.rb