mirror of
https://github.com/plashchynski/crono.git
synced 2026-04-27 19:27:22 +02:00
13 lines
364 B
Ruby
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
|