├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── VERSION ├── example ├── Gemfile ├── README.markdown ├── Rakefile ├── app │ └── models │ │ └── movie.rb ├── article.pdf ├── boot.rb └── db │ ├── .gitignore │ ├── config.yml │ ├── migrate │ └── 20210202023614_create_movies.rb │ └── schema.rb ├── lib ├── standalone_migrations.rb ├── standalone_migrations │ ├── callbacks.rb │ ├── configurator.rb │ ├── generator.rb │ ├── minimal_railtie_config.rb │ ├── tasks.rb │ └── tasks │ │ ├── connection.rake │ │ ├── db │ │ └── new_migration.rake │ │ └── environment.rake └── tasks │ └── standalone_migrations.rb ├── spec ├── spec_helper.rb ├── standalone_migrations │ ├── callbacks_spec.rb │ └── configurator_spec.rb └── standalone_migrations_spec.rb ├── standalone_migrations.gemspec └── vendor └── migration_helpers ├── MIT-LICENSE ├── README.markdown ├── init.rb └── lib └── migration_helper.rb /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | .idea 3 | schema.rb 4 | spec/tmp 5 | pkg 6 | Gemfile.lock 7 | tmp 8 | .DS_Store 9 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --force-color 2 | --profile 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 8.1.0 -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/README.markdown -------------------------------------------------------------------------------- /example/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/Rakefile -------------------------------------------------------------------------------- /example/app/models/movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/app/models/movie.rb -------------------------------------------------------------------------------- /example/article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/article.pdf -------------------------------------------------------------------------------- /example/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/boot.rb -------------------------------------------------------------------------------- /example/db/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite3 2 | -------------------------------------------------------------------------------- /example/db/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/db/config.yml -------------------------------------------------------------------------------- /example/db/migrate/20210202023614_create_movies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/db/migrate/20210202023614_create_movies.rb -------------------------------------------------------------------------------- /example/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/example/db/schema.rb -------------------------------------------------------------------------------- /lib/standalone_migrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations.rb -------------------------------------------------------------------------------- /lib/standalone_migrations/callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/callbacks.rb -------------------------------------------------------------------------------- /lib/standalone_migrations/configurator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/configurator.rb -------------------------------------------------------------------------------- /lib/standalone_migrations/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/generator.rb -------------------------------------------------------------------------------- /lib/standalone_migrations/minimal_railtie_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/minimal_railtie_config.rb -------------------------------------------------------------------------------- /lib/standalone_migrations/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/tasks.rb -------------------------------------------------------------------------------- /lib/standalone_migrations/tasks/connection.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/tasks/connection.rake -------------------------------------------------------------------------------- /lib/standalone_migrations/tasks/db/new_migration.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/tasks/db/new_migration.rake -------------------------------------------------------------------------------- /lib/standalone_migrations/tasks/environment.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/standalone_migrations/tasks/environment.rake -------------------------------------------------------------------------------- /lib/tasks/standalone_migrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/lib/tasks/standalone_migrations.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/standalone_migrations/callbacks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/spec/standalone_migrations/callbacks_spec.rb -------------------------------------------------------------------------------- /spec/standalone_migrations/configurator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/spec/standalone_migrations/configurator_spec.rb -------------------------------------------------------------------------------- /spec/standalone_migrations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/spec/standalone_migrations_spec.rb -------------------------------------------------------------------------------- /standalone_migrations.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/standalone_migrations.gemspec -------------------------------------------------------------------------------- /vendor/migration_helpers/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/vendor/migration_helpers/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/migration_helpers/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/vendor/migration_helpers/README.markdown -------------------------------------------------------------------------------- /vendor/migration_helpers/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/vendor/migration_helpers/init.rb -------------------------------------------------------------------------------- /vendor/migration_helpers/lib/migration_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuss/standalone-migrations/HEAD/vendor/migration_helpers/lib/migration_helper.rb --------------------------------------------------------------------------------