├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.rdoc ├── Rakefile ├── custom_counter_cache.gemspec ├── lib ├── custom_counter_cache.rb └── custom_counter_cache │ ├── model.rb │ └── version.rb └── test ├── counter_test.rb ├── gemfiles ├── rails-4.0 ├── rails-4.1 ├── rails-4.2 ├── rails-5.0 ├── rails-5.1 ├── rails-5.2 └── rails-6.0 └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/Rakefile -------------------------------------------------------------------------------- /custom_counter_cache.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/custom_counter_cache.gemspec -------------------------------------------------------------------------------- /lib/custom_counter_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/lib/custom_counter_cache.rb -------------------------------------------------------------------------------- /lib/custom_counter_cache/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/lib/custom_counter_cache/model.rb -------------------------------------------------------------------------------- /lib/custom_counter_cache/version.rb: -------------------------------------------------------------------------------- 1 | module CustomCounterCache 2 | 3 | VERSION = '0.2.8' 4 | 5 | end 6 | -------------------------------------------------------------------------------- /test/counter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/counter_test.rb -------------------------------------------------------------------------------- /test/gemfiles/rails-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/gemfiles/rails-4.0 -------------------------------------------------------------------------------- /test/gemfiles/rails-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/gemfiles/rails-4.1 -------------------------------------------------------------------------------- /test/gemfiles/rails-4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/gemfiles/rails-4.2 -------------------------------------------------------------------------------- /test/gemfiles/rails-5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/gemfiles/rails-5.0 -------------------------------------------------------------------------------- /test/gemfiles/rails-5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/gemfiles/rails-5.1 -------------------------------------------------------------------------------- /test/gemfiles/rails-5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/gemfiles/rails-5.2 -------------------------------------------------------------------------------- /test/gemfiles/rails-6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/gemfiles/rails-6.0 -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedric/custom_counter_cache/HEAD/test/test_helper.rb --------------------------------------------------------------------------------