gottfrois/dashing-rails

View on GitHub
lib/generators/dashing/job_generator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Dashing
  module Generators
    class JobGenerator < ::Rails::Generators::NamedBase

      source_root File.expand_path('../../templates', __FILE__)

      desc 'Creates a new Dashing job.'

      def job
        template 'jobs/new.rb', "app/jobs/#{file_name}.rb"
      end

    end
  end
end