├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Changelog.md ├── Gemfile ├── README.md ├── Rakefile ├── backfiller.gemspec ├── bin ├── console └── setup ├── db └── backfill │ └── .keep ├── lib ├── backfiller.rb └── backfiller │ ├── configuration.rb │ ├── cursor.rb │ ├── cursor │ └── postgresql.rb │ ├── railtie.rb │ ├── runner.rb │ └── tasks │ └── db.rake ├── log └── .keep └── spec ├── backfiller ├── cursor_spec.rb └── runner_spec.rb ├── spec_helper.rb └── support └── logger_mock.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | --format documentation 3 | --color 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/Changelog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/Rakefile -------------------------------------------------------------------------------- /backfiller.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/backfiller.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/bin/setup -------------------------------------------------------------------------------- /db/backfill/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/backfiller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/lib/backfiller.rb -------------------------------------------------------------------------------- /lib/backfiller/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/lib/backfiller/configuration.rb -------------------------------------------------------------------------------- /lib/backfiller/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/lib/backfiller/cursor.rb -------------------------------------------------------------------------------- /lib/backfiller/cursor/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/lib/backfiller/cursor/postgresql.rb -------------------------------------------------------------------------------- /lib/backfiller/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/lib/backfiller/railtie.rb -------------------------------------------------------------------------------- /lib/backfiller/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/lib/backfiller/runner.rb -------------------------------------------------------------------------------- /lib/backfiller/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/lib/backfiller/tasks/db.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/backfiller/cursor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/spec/backfiller/cursor_spec.rb -------------------------------------------------------------------------------- /spec/backfiller/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/spec/backfiller/runner_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/logger_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/backfiller/HEAD/spec/support/logger_mock.rb --------------------------------------------------------------------------------