├── .dependabot └── config.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── activerecord-migration_notes.gemspec ├── lib ├── active_record │ └── migration_notes │ │ ├── handler.rb │ │ ├── migration.rb │ │ ├── railtie.rb │ │ ├── tasks.rake │ │ └── version.rb └── activerecord-migration_notes.rb └── spec ├── active_record └── migration_notes │ ├── handler_spec.rb │ ├── migration_spec.rb │ └── post_message_spec.rb └── spec_helper.rb /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/Rakefile -------------------------------------------------------------------------------- /activerecord-migration_notes.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/activerecord-migration_notes.gemspec -------------------------------------------------------------------------------- /lib/active_record/migration_notes/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/lib/active_record/migration_notes/handler.rb -------------------------------------------------------------------------------- /lib/active_record/migration_notes/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/lib/active_record/migration_notes/migration.rb -------------------------------------------------------------------------------- /lib/active_record/migration_notes/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/lib/active_record/migration_notes/railtie.rb -------------------------------------------------------------------------------- /lib/active_record/migration_notes/tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/lib/active_record/migration_notes/tasks.rake -------------------------------------------------------------------------------- /lib/active_record/migration_notes/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/lib/active_record/migration_notes/version.rb -------------------------------------------------------------------------------- /lib/activerecord-migration_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/lib/activerecord-migration_notes.rb -------------------------------------------------------------------------------- /spec/active_record/migration_notes/handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/spec/active_record/migration_notes/handler_spec.rb -------------------------------------------------------------------------------- /spec/active_record/migration_notes/migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/spec/active_record/migration_notes/migration_spec.rb -------------------------------------------------------------------------------- /spec/active_record/migration_notes/post_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelvanrijn/activerecord-migration_notes/HEAD/spec/active_record/migration_notes/post_message_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) 2 | require 'activerecord-migration_notes' 3 | --------------------------------------------------------------------------------