Class: BackgroundGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/background/background_generator.rb

Class Method Summary (collapse)

Instance Method Summary (collapse)

Class Method Details

+ (Object) next_migration_number(dirname)

Implement the required interface for Rails::Generators::Migration. taken from github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb



16
17
18
19
20
21
22
# File 'lib/generators/background/background_generator.rb', line 16

def self.next_migration_number(dirname) #:nodoc:
  if ActiveRecord::Base.timestamped_migrations
    Time.now.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(dirname) + 1)
  end
end

+ (Object) source_root



10
11
12
# File 'lib/generators/background/background_generator.rb', line 10

def self.source_root
  File.join(File.dirname(__FILE__), 'templates')
end

Instance Method Details

- (Object) copy_daemons



24
25
26
# File 'lib/generators/background/background_generator.rb', line 24

def copy_daemons
  template 'background.rb', 'script/background'
end

- (Object) copy_examples



28
29
30
31
32
33
# File 'lib/generators/background/background_generator.rb', line 28

def copy_examples
  unless options[:skip_examples]
    template 'example_worker.rb', 'lib/workers/example_worker.rb'
    template 'example_monitored_worker.rb', 'lib/workers/example_monitored_worker.rb'
  end
end

- (Object) create_migration_file



35
36
37
# File 'lib/generators/background/background_generator.rb', line 35

def create_migration_file
  migration_template 'migration.rb', 'db/migrate/create_jobs.rb' unless options[:skip_migration]  
end