Files
crono/lib/generators/periodicity/install/install_generator.rb
Dzmitry Plashchynski 20217b0c8a Add install generator
2015-03-02 21:43:47 +02:00

13 lines
364 B
Ruby

module Periodicity
module Generators
class InstallGenerator < ::Rails::Generators::Base
desc "Installs periodicity and generates the necessary configuration files"
source_root File.expand_path("../templates", __FILE__)
def copy_config
template 'periodicity.rb.erb', 'config/initializers/periodicity.rb'
end
end
end
end