custom_query_methods 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62183bb9d339ac0455b11809dd55785e8b72f34ca6fc4c60f04bb66ec5e2752e
4
- data.tar.gz: d52dd72acd2006c06a39b88b4e99ca2de61b41c9ad4fd970dec6ff044622d249
3
+ metadata.gz: 39867c06a422f20d4e29a237483bcddb348406847feff44d8f5af6850adee9be
4
+ data.tar.gz: c692235378f6b4909e599e3e7ab3871a71a5953ae6889153ddaa6d2bcfb22610
5
5
  SHA512:
6
- metadata.gz: 03fe6901bd2d4f4a3fdcf79a3e8edd9d97fc0ad0861021b6148f4e97ea688ad9f5a3bcef7f38c7783df46b704a917058689356c9bb37ba81f338f49a4a7f0b77
7
- data.tar.gz: 75635494517167c6d7f8671b2f6ceb7dd224c80a9dcfbfdd3336f1854c7c803645d727b215dffe3c0b8dd1ca7b8d0e0c50c8ac58f6b2bdaac3a3b9a75c7e241a
6
+ metadata.gz: f0d366c4f70bbf559cf9ba3ec8d609d1e24dfd75fe652708a61f09396bedfcded50c417f4115cde91fdb4d48a91bfe9ae01c2d1a125a6f2703a9079e67e3ddfd
7
+ data.tar.gz: d76a0b9760aa364ee8975597660b05deb12ec9cf4453bae2701fc58a007d0948dd6568cc76b5c6697be816a21ef99b269fa8b3cf55e219400181164d1dfbd98f
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  module CustomQueryMethods
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -1,9 +1,8 @@
1
1
  require "custom_query_methods/version"
2
2
  require "custom_query_methods/active_record_extension"
3
- require 'custom_query_methods/railtie'
4
3
 
5
4
  module CustomQueryMethods
6
- ActiveRecord::QueryMethods.include ActiveRecordExtension
5
+ ActiveRecord::Base.include ActiveRecordExtension
7
6
 
8
7
  class Error < StandardError; end
9
8
  # Your code goes here...
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: custom_query_methods
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - tsotne
@@ -54,6 +54,9 @@ files:
54
54
  - bin/console
55
55
  - bin/setup
56
56
  - custom_query_methods-0.1.0.gem
57
+ - custom_query_methods-0.1.1.gem
58
+ - custom_query_methods-0.1.2.gem
59
+ - custom_query_methods-0.1.3.gem
57
60
  - custom_query_methods.gemspec
58
61
  - lib/custom_query_methods.rb
59
62
  - lib/custom_query_methods/active_record_extension.rb