├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemfiles ├── mongoid8.gemfile └── mongoid9.gemfile ├── hightop.gemspec ├── lib ├── hightop.rb └── hightop │ ├── enumerable.rb │ ├── kicks.rb │ ├── mongoid.rb │ ├── utils.rb │ └── version.rb └── test ├── enumerable_test.rb ├── model_test.rb ├── support ├── active_record.rb └── mongoid.rb └── test_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/mongoid8.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/gemfiles/mongoid8.gemfile -------------------------------------------------------------------------------- /gemfiles/mongoid9.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/gemfiles/mongoid9.gemfile -------------------------------------------------------------------------------- /hightop.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/hightop.gemspec -------------------------------------------------------------------------------- /lib/hightop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/lib/hightop.rb -------------------------------------------------------------------------------- /lib/hightop/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/lib/hightop/enumerable.rb -------------------------------------------------------------------------------- /lib/hightop/kicks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/lib/hightop/kicks.rb -------------------------------------------------------------------------------- /lib/hightop/mongoid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/lib/hightop/mongoid.rb -------------------------------------------------------------------------------- /lib/hightop/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/lib/hightop/utils.rb -------------------------------------------------------------------------------- /lib/hightop/version.rb: -------------------------------------------------------------------------------- 1 | module Hightop 2 | VERSION = "0.6.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/enumerable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/test/enumerable_test.rb -------------------------------------------------------------------------------- /test/model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/test/model_test.rb -------------------------------------------------------------------------------- /test/support/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/test/support/active_record.rb -------------------------------------------------------------------------------- /test/support/mongoid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/test/support/mongoid.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankane/hightop/HEAD/test/test_helper.rb --------------------------------------------------------------------------------