├── .buildkite └── pipeline.yml ├── .gitignore ├── .rspec ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── active_record-updated_at.gemspec ├── bin ├── rubocop └── test ├── docker-compose.yml ├── lib ├── active_record-updated_at.rb └── active_record │ └── updated_at │ ├── persistence.rb │ └── relation.rb └── spec ├── active_record-updated_at_spec.rb ├── internal ├── app │ └── models │ │ └── user.rb ├── config │ └── database.yml ├── db │ └── schema.rb └── log │ └── .gitignore └── spec_helper.rb /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | pkg 3 | rdoc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/README.md -------------------------------------------------------------------------------- /active_record-updated_at.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/active_record-updated_at.gemspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/bin/test -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/active_record-updated_at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/lib/active_record-updated_at.rb -------------------------------------------------------------------------------- /lib/active_record/updated_at/persistence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/lib/active_record/updated_at/persistence.rb -------------------------------------------------------------------------------- /lib/active_record/updated_at/relation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/lib/active_record/updated_at/relation.rb -------------------------------------------------------------------------------- /spec/active_record-updated_at_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/spec/active_record-updated_at_spec.rb -------------------------------------------------------------------------------- /spec/internal/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/internal/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/spec/internal/config/database.yml -------------------------------------------------------------------------------- /spec/internal/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/spec/internal/db/schema.rb -------------------------------------------------------------------------------- /spec/internal/log/.gitignore: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LendingHome/active_record-updated_at/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------