fwtoolkit 2.1.8 → 2.1.9
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/lib/fwtoolkit/cli/project.rb +3 -3
- data/lib/fwtoolkit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00ee42773eb1834e475810b99387d3287bcf56090b14a6c9bed94372a8284e87
|
|
4
|
+
data.tar.gz: 08e4c71c913d2e353decda8eee3cd3fd5811086a21e9c41de0094c3b52a6819e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e896fbd9430e8c90d96943753a31c86558fba87e43cc67f5e5e53223e6defc64c6b2f1fcf9c38d99b7f91afcaa57e5254ed15e0daacad25aa3ffa3f9ad51c76d
|
|
7
|
+
data.tar.gz: e37a07841f47dbe1f65807c871862b00ad6120c909a814b4608209550142f5315b17eb0b6191cf52148b2f28c31afff6f990c1ed4b1649a120141640d802ed35
|
|
@@ -13,7 +13,7 @@ module FWToolkit
|
|
|
13
13
|
include FWToolkit::ThorUtils
|
|
14
14
|
source_root_templates!
|
|
15
15
|
|
|
16
|
-
desc "new [swift|objc] [PROJECT NAME] [CLASS PREFIX]", "Create a new Xcode project with FW's settings. Language is either objc or swift"
|
|
16
|
+
desc "proj new [swift|objc] [PROJECT NAME] [CLASS PREFIX]", "Create a new Xcode project with FW's settings. Language is either objc or swift"
|
|
17
17
|
def new(project_language, project_name, class_prefix)
|
|
18
18
|
unless project_language == "swift" or project_language == "objc"
|
|
19
19
|
say_status :error, "Project language should be either swift or objc", :red
|
|
@@ -38,7 +38,7 @@ module FWToolkit
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
desc "conf_rvm [PROJECT_DIR]", "Configure rvm/gem environment on a project's folder"
|
|
41
|
+
desc "proj conf_rvm [PROJECT_DIR]", "Configure rvm/gem environment on a project's folder"
|
|
42
42
|
def conf_rvm(project_language, project_root=Dir.pwd)
|
|
43
43
|
@project_name = File.basename(project_root)
|
|
44
44
|
@ruby_version = Config.ruby_version
|
|
@@ -55,7 +55,7 @@ module FWToolkit
|
|
|
55
55
|
end
|
|
56
56
|
end
|
|
57
57
|
|
|
58
|
-
desc "update [PROJECT_DIR]", "Update project's pods/gems and submodules"
|
|
58
|
+
desc "proj update [PROJECT_DIR]", "Update project's pods/gems and submodules"
|
|
59
59
|
def update(project_root=Dir.pwd)
|
|
60
60
|
bundle_update
|
|
61
61
|
|
data/lib/fwtoolkit/version.rb
CHANGED