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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed18879c6aaea9b7fa96be67e6fd3f4b9b59cfc7b79a1d0eef33017e8bf509aa
4
- data.tar.gz: 1b36fab3efe73e5df8510ef4896fbb991d8d2b478c86af3a3b76fd7b185a92b9
3
+ metadata.gz: da77ac21c97c9cc63e764e19e1ba3b303a4ce467a56f9edb64c533f5b4c1bb0e
4
+ data.tar.gz: 9a17c7288fe79b677c330cea509d535eb85ba82137073b5b18d1537a9a98a60f
5
5
  SHA512:
6
- metadata.gz: bbc63d361f6ee464b88cdfca30be2974a99faf63824427d8f483aa136d55e3315242d02d0d8be1aebebddb0d954c863dfa5bff31af178d2f4e922870f8d206e5
7
- data.tar.gz: d93d06d263c9c7fef24fcb15417f58c64033dbd9da492bd72728e5ac05d4ff0cf73ccf360d5cb7e03f363f9e22c99d003694a0ca30b81c30a7b6676307abcfa4
6
+ metadata.gz: 8af1b5d46dfcbf174b54e1c644935112d397271c3171d3aa8daf725884016bfae957ab36275736a0ba7a2f9e7d3255c3bb8a040c52e74f60f1aa48ad29ae17f2
7
+ data.tar.gz: dcdd686f46dd94d5f8fd368c7f8631f4cfeb73c87328a7b0c52edbccc3e5b24bbb3090a193c383250b7177d991f24b374dbc99c1cfc100cfae4a9df918aa6f6b
@@ -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
 
@@ -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')
@@ -1,5 +1,5 @@
1
1
  # typed: strict
2
2
 
3
3
  module Kuby
4
- VERSION = '0.11.3'
4
+ VERSION = '0.11.4'
5
5
  end
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.3
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 00:00:00.000000000 Z
11
+ date: 2020-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize