mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-28 20:32:00 +01: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
|