udgenerator 1.0.5 → 1.0.6
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/exe/udgenerator +2 -2
- data/lib/udgenerator/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc7d848d36712c709a7c72e165d9c7bee1e2dd30
|
4
|
+
data.tar.gz: 951aa80777646a63ce7a426b6f43c2b9a73160a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3030ddff9ed77d544a4bf8373f019bb8be7de1d527af4834fab13445154d9164572536c20103cfeaaa36fda64eaa558204fe55ca3177f627840dd688ce0cdba4
|
7
|
+
data.tar.gz: d0d1b759375c9c6823d511eb581965a1e64500ce252f78f6c1d58e491ee79b911f5cca4f8773b3deb9306ec4d2eaccc4452d8d32a6b3d4ccdcf98c3f65492c02
|
data/exe/udgenerator
CHANGED
@@ -9,8 +9,8 @@ module Udgenerator
|
|
9
9
|
class CLI < Thor
|
10
10
|
default_task :update
|
11
11
|
|
12
|
-
option :auto_init, :type => :boolean, :aliases => '-a', :default =>
|
13
|
-
option :input, :type => :string, :aliases => '-i', :
|
12
|
+
option :auto_init, :type => :boolean, :aliases => '-a', :default => false, :desc => 'auto initialization. all zero or empty string, etc ...'
|
13
|
+
option :input, :type => :string, :aliases => '-i', :required => true, :desc => 'input file'
|
14
14
|
option :output, :type => :string, :aliases => '-o', :default => "./", :desc => 'output directory'
|
15
15
|
option :file_name, :type => :string, :aliases => '-f', :default => "UserDefaults", :desc => 'output file name'
|
16
16
|
option :swift, :type => :boolean, :aliases => '-s', :default => false, :desc => 'swift'
|
data/lib/udgenerator/version.rb
CHANGED