├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── dynamodb-migration.gemspec ├── lib └── dynamodb │ ├── migration.rb │ └── migration │ ├── execute.rb │ ├── unit.rb │ └── version.rb └── spec ├── dynamodb ├── migration_spec.rb └── test_migrations │ ├── create_sessions_table.rb │ └── create_users_table.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/bin/setup -------------------------------------------------------------------------------- /dynamodb-migration.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/dynamodb-migration.gemspec -------------------------------------------------------------------------------- /lib/dynamodb/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/lib/dynamodb/migration.rb -------------------------------------------------------------------------------- /lib/dynamodb/migration/execute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/lib/dynamodb/migration/execute.rb -------------------------------------------------------------------------------- /lib/dynamodb/migration/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/lib/dynamodb/migration/unit.rb -------------------------------------------------------------------------------- /lib/dynamodb/migration/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/lib/dynamodb/migration/version.rb -------------------------------------------------------------------------------- /spec/dynamodb/migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/spec/dynamodb/migration_spec.rb -------------------------------------------------------------------------------- /spec/dynamodb/test_migrations/create_sessions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/spec/dynamodb/test_migrations/create_sessions_table.rb -------------------------------------------------------------------------------- /spec/dynamodb/test_migrations/create_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/spec/dynamodb/test_migrations/create_users_table.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrylawson/dynamodb-migration/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------