tiny-record 1.1.3 → 1.1.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
  SHA256:
3
- metadata.gz: 14f516e297866f984b529f7a2f7e27b4169359e1241f034ecddd7e262dd7fa5b
4
- data.tar.gz: 5cc68f07bb52847f896e28e70f0f82432391eadf226d90a0d6921ffbb763053a
3
+ metadata.gz: 074a6a8423b7625c3b20e333059d2debd94d7320648d5600c3299a9c28239966
4
+ data.tar.gz: 3e8f4017af8012cf55cc6a5fd0fd9c2f38e343c170de99fdee6b6be8076fd2fb
5
5
  SHA512:
6
- metadata.gz: 0f65006c083eceab4f2c5783ea8c85307f4daa110b097877f0ea8591ade5f69823a786bd5c4820cfacadf7fe0adc69faebef89b94640bc11552d4e9c1f5c1f16
7
- data.tar.gz: c11f684a8e0b4fe005b9f973215cd08b28a9177f27c583703f073f1ffdfaa829d8b7ead942f2765be9cff0016572b22a79407f45966dbbeb37dc276d63561cd4
6
+ metadata.gz: 74b5de89e2d0c0e4722bb407b4e9794e8f61626826be2f7993d33a7b28c71526b2d4a3dd2f5cecba160a18e0dd223fc1f3752254051dabfc0d8e37968c267af1
7
+ data.tar.gz: dd72c287f1f73e7726f716ee0fb03c7140bc3aff821ca210e5cc0d6ec2b090c4b64e161d14ea68d6adb357bf6af587d98a09ab8a7a23559c7c884722511d5eb4
@@ -1,3 +1,9 @@
1
+ ## 1.1.4 - 2020-01-08
2
+ * make internal methods private
3
+
4
+ ## 1.1.3 - 2020-01-02
5
+ * Bug Fixes
6
+
1
7
  ## 1.1.2 - 2020-01-02
2
8
 
3
9
  ### Improvements
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tiny-record (1.1.1)
4
+ tiny-record (1.1.4)
5
5
  activerecord (>= 4.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  # TinyRecord
5
5
 
6
- TinyRecord gives to you the capability to target columns when you try to look for active record objects specifying the columns you want to use.
6
+ TinyRecord gives you the capability to target columns when you try to look for active record objects specifying the columns you want to use.
7
7
 
8
8
  ## Installation
9
9
 
@@ -26,6 +26,8 @@ module TinyRecord
26
26
  end
27
27
  end
28
28
 
29
+ private
30
+
29
31
  def _get_records(by_columns, with_columns = nil)
30
32
  collection = where(by_columns)
31
33
  collection = _retrieve_selective_columns(collection,with_columns)
@@ -1,5 +1,5 @@
1
1
  module Tiny
2
2
  module Record
3
- VERSION = "1.1.3"
3
+ VERSION = "1.1.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny-record
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vikas Verma
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-01-02 00:00:00.000000000 Z
11
+ date: 2020-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler