lite-ruby 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: 7713f3546f3dd3a4c172e10e7aa332869d2d294ec312795d6d1f2492dea5d8ff
4
- data.tar.gz: df391d0705345f9c881a897bbdd3505655812b887b3e85e3ef9a0124a83c22c9
3
+ metadata.gz: 4095b0d8f2c311166ae6e3c707ba2437517bf6556440ed5613fc0d931be7acb2
4
+ data.tar.gz: 574f86f3a826e1af9a34787341712c425309214b54842f5b3087c0057bcd9dde
5
5
  SHA512:
6
- metadata.gz: 66b6cce96af1d4f3125a73086791a08e911e43473e9c2cb02c54b47c3e9e1e08876cb351619831fe5a465e58fe700e3db22c61ef6fcea3f6566d3bf433fc3a1a
7
- data.tar.gz: ee3c87ee3db742a29f975a28aeffeac7877143df46a74a80dc123dc3d8ec687cf507d8a1150c6852753d575b503c0bd087a55efee1cd89061cf714313edd86ef
6
+ metadata.gz: df9078ba4edcac6279821fe3adf58f47f78f0ade91ba9359b805599eda8fb8b532ea242d92c2b0960e3e49674179e7153a87286bc3ba4a5d27c231432c035ec9
7
+ data.tar.gz: 1b183bb09263ccc731626cbfbee11f05e39a32caf00ec3cc2ce4f7297052f929b6899c7a3adc3d80cd573a546d6be986898cc64cce9f1848b8ae6a2d70d801d5
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.1.4] - 2020-11-19
10
+ ### Changed
11
+ - Object `array?` coerce ARGV check from nil to string
12
+
9
13
  ## [1.1.3] - 2020-11-18
10
14
  ### Changed
11
15
  - Object `array?` does not clash with PG gem
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-ruby (1.1.3)
4
+ lite-ruby (1.1.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -12,7 +12,10 @@ if Lite::Ruby.configuration.monkey_patches.include?('object')
12
12
  1 t true y yes on
13
13
  ].freeze
14
14
 
15
- unless defined?(PG) && ARGV.first.start_with?('db:')
15
+ # NOTE: There is a class between the PG gem and the `array?` method.
16
+ # We only need to skip this on migrations since that action
17
+ # happens on a seperate runtime.
18
+ unless defined?(PG) && ARGV.first.to_s.start_with?('db:')
16
19
  def array?
17
20
  is_a?(Array)
18
21
  end
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Ruby
5
5
 
6
- VERSION ||= '1.1.3'
6
+ VERSION ||= '1.1.4'
7
7
 
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lite-ruby
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
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-19 00:00:00.000000000 Z
11
+ date: 2020-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler