Sha256: c09f48d46c26e4863a7d3a1400f8c918389c0a4c27a6ec9331f979acb6de6fd4
Contents?: true
Size: 687 Bytes
Versions: 10
Compression:
Stored size: 687 Bytes
Contents
require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Profiles::Generators class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) def run_other_generators end def self.next_migration_number(path) next_migration_number = current_migration_number(path) + 1 ActiveRecord::Migration.next_migration_number next_migration_number end def copy_migrations migration_template 'create_tramway_profiles_social_networks.rb', 'db/migrate/create_tramway_profiles_social_networks.rb' end end end
Version data entries
10 entries across 10 versions & 1 rubygems