Sha256: 0deb97efcf0ea3fe781b13e79eb49a52f63ea0528ad296b91c47840456b04eed

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

module BowerRails
  module Generators
    class InitializeGenerator < Rails::Generators::Base
      INITIALIZE_FILE_PATH = 'config/initializers/bower_rails.rb'

      desc 'Adds a boilerplate bower.json or Bowerfile to the root of Rails project and an empty initializer'
      source_root File.expand_path('../templates', __FILE__)
      argument :config_file, :type => :string, :default => 'bowerfile'

      def create_config_file
        config_file_name = config_file.underscore
        case config_file_name
        when 'bowerfile' then copy_file 'Bowerfile',  'Bowerfile'
        when 'json'      then copy_file 'bower.json', 'bower.json'
        else
          raise ArgumentError, 'You can setup bower-rails only using bower.json or Bowerfile. Please provide `json` or `bowerfile` as an argument instead'
        end
      end

      def copy_initializer_file
        copy_file 'bower_rails.rb', INITIALIZE_FILE_PATH
      end

      def require_initializer_in_application_rb
        if Rails.version < "4.0.0"
          environment { "require Rails.root.join(\"#{INITIALIZE_FILE_PATH}\").to_s" }
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bower-rails-0.12.0 lib/generators/bower_rails/initialize/initialize_generator.rb
bower-rails-0.11.0 lib/generators/bower_rails/initialize/initialize_generator.rb