├── .gitignore ├── .rspec ├── .tachikoma.yml ├── .travis.yml ├── Appraisals ├── ChangeLog.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── activerecord-mysql-index-hint.gemspec ├── gemfiles ├── 4.1.gemfile ├── 4.2.gemfile └── 5.0.gemfile ├── lib ├── activerecord-mysql-index-hint.rb └── activerecord-mysql-index-hint │ └── version.rb └── spec ├── activerecord-mysql-index-hint_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.tachikoma.yml: -------------------------------------------------------------------------------- 1 | strategy: 'bundler' 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/Appraisals -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/Rakefile -------------------------------------------------------------------------------- /activerecord-mysql-index-hint.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/activerecord-mysql-index-hint.gemspec -------------------------------------------------------------------------------- /gemfiles/4.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/gemfiles/4.1.gemfile -------------------------------------------------------------------------------- /gemfiles/4.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/gemfiles/4.2.gemfile -------------------------------------------------------------------------------- /gemfiles/5.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/gemfiles/5.0.gemfile -------------------------------------------------------------------------------- /lib/activerecord-mysql-index-hint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/lib/activerecord-mysql-index-hint.rb -------------------------------------------------------------------------------- /lib/activerecord-mysql-index-hint/version.rb: -------------------------------------------------------------------------------- 1 | module ActiveRecordMysqlIndexHint 2 | VERSION = "0.0.4" 3 | end 4 | -------------------------------------------------------------------------------- /spec/activerecord-mysql-index-hint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/spec/activerecord-mysql-index-hint_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirakui/activerecord-mysql-index-hint/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------