Class: PhotosManagerGenerator

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/generators/photos_manager/photos_manager_generator.rb', line 10

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

.source_rootObject



6
7
8
# File 'lib/generators/photos_manager/photos_manager_generator.rb', line 6

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

Instance Method Details

#copy_swfObject



18
19
20
# File 'lib/generators/photos_manager/photos_manager_generator.rb', line 18

def copy_swf
  copy_file "uploadify.swf", "app/assets/javascripts/uploadify.swf"  
end

#create_migration_fileObject



29
30
31
# File 'lib/generators/photos_manager/photos_manager_generator.rb', line 29

def create_migration_file
  migration_template 'migration.rb', 'db/migrate/create_events_and_photos.rb'
end

#mount_engineObject



22
23
24
25
26
27
# File 'lib/generators/photos_manager/photos_manager_generator.rb', line 22

def mount_engine
	puts "Mounting PhotosManager::Engine in config/routes.rb..."
	insert_into_file("#{Rails.root}/config/routes.rb", :after => /routes.draw.do\n/) do
		%Q{  mount PhotosManager::Engine, :at => "/photos_manager"\n}
	end
end