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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/lite/ruby/object.rb +4 -1
- data/lib/lite/ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4095b0d8f2c311166ae6e3c707ba2437517bf6556440ed5613fc0d931be7acb2
|
4
|
+
data.tar.gz: 574f86f3a826e1af9a34787341712c425309214b54842f5b3087c0057bcd9dde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df9078ba4edcac6279821fe3adf58f47f78f0ade91ba9359b805599eda8fb8b532ea242d92c2b0960e3e49674179e7153a87286bc3ba4a5d27c231432c035ec9
|
7
|
+
data.tar.gz: 1b183bb09263ccc731626cbfbee11f05e39a32caf00ec3cc2ce4f7297052f929b6899c7a3adc3d80cd573a546d6be986898cc64cce9f1848b8ae6a2d70d801d5
|
data/CHANGELOG.md
CHANGED
@@ -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
|
data/Gemfile.lock
CHANGED
data/lib/lite/ruby/object.rb
CHANGED
@@ -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
|
-
|
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
|
data/lib/lite/ruby/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2020-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|