kuby-core 0.11.3 → 0.11.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/kuby/commands.rb +2 -0
- data/lib/kuby/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: da77ac21c97c9cc63e764e19e1ba3b303a4ce467a56f9edb64c533f5b4c1bb0e
|
|
4
|
+
data.tar.gz: 9a17c7288fe79b677c330cea509d535eb85ba82137073b5b18d1537a9a98a60f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8af1b5d46dfcbf174b54e1c644935112d397271c3171d3aa8daf725884016bfae957ab36275736a0ba7a2f9e7d3255c3bb8a040c52e74f60f1aa48ad29ae17f2
|
|
7
|
+
data.tar.gz: dcdd686f46dd94d5f8fd368c7f8631f4cfeb73c87328a7b0c52edbccc3e5b24bbb3090a193c383250b7177d991f24b374dbc99c1cfc100cfae4a9df918aa6f6b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 0.11.4
|
|
2
|
+
* Fix bug causing crash when running CLI commands.
|
|
3
|
+
- Turns out was caused by adding a Sorbet type annotation inside an anonymous singleton class and forgetting to extend `T::Sig`. Thanks @lazyatom!
|
|
4
|
+
|
|
1
5
|
## 0.11.3
|
|
2
6
|
* I've gone back and forth a few times on this, but I decided to put the initializer code back into the Rails generator.
|
|
3
7
|
|
data/lib/kuby/commands.rb
CHANGED
|
@@ -19,6 +19,8 @@ module Kuby
|
|
|
19
19
|
# avoid the usual series of cryptic alias_method calls (note that there
|
|
20
20
|
# is no singleton class version of #prepend in the Ruby language).
|
|
21
21
|
singleton_class.send(:prepend, Module.new do
|
|
22
|
+
extend T::Sig
|
|
23
|
+
|
|
22
24
|
sig { params(args: T::Array[String]).void }
|
|
23
25
|
def run(args)
|
|
24
26
|
if idx = args.index('rails') || idx = args.index('rake')
|
data/lib/kuby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kuby-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cameron Dutro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-10-
|
|
11
|
+
date: 2020-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|