activerecord-mysql-index-hint 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f7191260fbe07cc9cb7cfcfb9b83b984e2b28ccd
4
- data.tar.gz: 05eaa9aa8ddc2190ce7d408af6a4ee1bf562dd34
3
+ metadata.gz: 52c3321e9f5ccbdfb32372360cf6ea72c5701d48
4
+ data.tar.gz: 3313bb9bf7e4c101f63da38cefae656129e6eeeb
5
5
  SHA512:
6
- metadata.gz: 576b2f9b945d6fc3f43becf70b69847d6c98f061b0dd00f998567a231bec0f9c0baef7db0613d0113938c99ba1c641a793f7a9f2f21a4f816004d1fba22a80f8
7
- data.tar.gz: e139007a6c0c3b32e5617ca3d610297b76aff2db62a7a88e387e8c95a113c33c7a39024af770079cafd4c6489959ad7334434920b5d1bbed8ab7880c8c5a0225
6
+ metadata.gz: f41ab1dcecb1f3a275d616a353d3fe79710aadaedf37a254b90fb684644c73ff70082ebce22ca3ea55e2a8137f6c536422add79ac6d79faeef21af11f75847b8
7
+ data.tar.gz: e87ae56db5e6f463aac9c66fd473f4024d099880da7b45ed9556be31cd07fb5d4b58b52900d96dfb5fd791eb12e288d973a582301eafeb4688afe7df088fe053
@@ -1,4 +1,7 @@
1
1
  # ChangeLog
2
+ ## 0.0.4
3
+ - Support Rails 5 (Thanks @adorechic)
4
+
2
5
  ## 0.0.3
3
6
  - Fix count with eager_load (Thanks @kamipo)
4
7
 
@@ -22,7 +22,6 @@ module ActiveRecordMysqlIndexHint
22
22
  end
23
23
 
24
24
  ActiveSupport.on_load :active_record do
25
- require 'active_record/relation/query_methods'
26
25
  ActiveRecord::Base.extend ActiveRecordMysqlIndexHint
27
26
  ActiveRecord::Relation.send :include, ActiveRecordMysqlIndexHint
28
27
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveRecordMysqlIndexHint
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -23,6 +23,10 @@ module ActiveRecord
23
23
 
24
24
  def configure_connection
25
25
  end
26
+
27
+ def full_version
28
+ "5.0.0"
29
+ end
26
30
  }
27
31
  end
28
32
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-mysql-index-hint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Issei Naruta
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-16 00:00:00.000000000 Z
11
+ date: 2016-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord