Sha256: c66c2820b51fe8bd6c25809abea088b180ca5a3023fbbb555f23b683e6b7818c
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
# frozen_string_literal: true require "rails/generators/migration" module Sail module Generators # InstallGenerator # This is the install generator for Sail # which creates the necessary migrations class InstallGenerator < ::Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path("templates", __dir__) desc "Create Sail migrations" def self.next_migration_number(_path) if @prev_migration_nr @prev_migration_nr += 1 else @prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i end @prev_migration_nr.to_s end def copy_migrations migration_template "create_sail_settings.rb", "db/migrate/create_sail_settings.rb", migration_version: migration_version migration_template "create_sail_profiles.rb", "db/migrate/create_sail_profiles.rb", migration_version: migration_version end def migration_version "[#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}]" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sail-3.4.0 | lib/generators/sail/install/install_generator.rb |