Sha256: 3778570a333bee31097e6f02b8d508a97f12f939cc3b9444e9361cd285ea0469
Contents?: true
Size: 1.07 KB
Versions: 15
Compression:
Stored size: 1.07 KB
Contents
require 'generators/rspec' module Rspec module Generators class ControllerGenerator < Base argument :actions, :type => :array, :default => [], :banner => "action action" class_option :template_engine, :desc => "Template engine to generate view files" class_option :controller_specs, :type => :boolean, :default => true class_option :view_specs, :type => :boolean, :default => true def generate_controller_spec return unless options[:controller_specs] template 'controller_spec.rb', File.join('spec/controllers', class_path, "#{file_name}_controller_spec.rb") end def generate_view_specs return if actions.empty? return unless options[:view_specs] && options[:template_engine] empty_directory File.join("spec", "views", file_path) actions.each do |action| @action = action template 'view_spec.rb', File.join("spec", "views", file_path, "#{@action}.html.#{options[:template_engine]}_spec.rb") end end end end end
Version data entries
15 entries across 15 versions & 2 rubygems