Sha256: bad7f16bbfee8efaa67e7c178a454e903f5798d5763a43b6a0a26819e1475d43

Contents?: true

Size: 1.47 KB

Versions: 8

Compression:

Stored size: 1.47 KB

Contents

require 'rails'

module Alchemy
  module Generators
    class Base < ::Rails::Generators::Base
      class_option :template_engine, type: :string, aliases: '-e', desc: 'Template engine for the views. Available options are "erb", "haml", and "slim".'

      private

      def conditional_template(source, destination)
        files = Dir.glob(destination.gsub(/\.([a-z]+)$/, '*'))
        if files.any?
          ext = File.extname(files.first)[1..-1]

          # If view already exists using a different template engine, change
          # source and destination file names to use that engine.
          if ext != template_engine.to_s
            say_status :warning, "View uses unexpected template engine '#{ext}'.", :cyan
            destination.gsub!(/#{template_engine}$/, ext)
            source.gsub!(/#{template_engine}$/, ext)
          end
        end

        template source, destination
      end

      def template_engine
        # Rails is clever enough to default this to whatever template
        # engine is configured through its generator configuration,
        # but we'll default it to erb anyway, just in case.
        options[:template_engine] || 'erb'
      end

      def load_alchemy_yaml(name)
        YAML.safe_load(ERB.new(File.read("#{Rails.root}/config/alchemy/#{name}")).result, [Regexp], [], true)
      rescue Errno::ENOENT
        puts "\nERROR: Could not read config/alchemy/#{name} file. Please run: rails generate alchemy:scaffold"
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
alchemy_cms-4.0.0 lib/rails/generators/alchemy/base.rb
alchemy_cms-3.6.3 lib/rails/generators/alchemy/base.rb
alchemy_cms-3.6.2 lib/rails/generators/alchemy/base.rb
alchemy_cms-4.0.0.rc2 lib/rails/generators/alchemy/base.rb
alchemy_cms-4.0.0.rc1 lib/rails/generators/alchemy/base.rb
alchemy_cms-3.6.1 lib/rails/generators/alchemy/base.rb
alchemy_cms-4.0.0.beta lib/rails/generators/alchemy/base.rb
alchemy_cms-3.6.0 lib/rails/generators/alchemy/base.rb