fwtoolkit 2.3.0 → 2.3.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1351497268b57e36418e53649165439481be612917c5a34787eae78f7dec603
|
|
4
|
+
data.tar.gz: e0bb69fd552700a57818bc899638a37fde724d02ae96575da88ccd14e448553a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f72e3b91d1df55adc7eb51a17d07e12f245d7a129bdf6ee7024338071a86bdcaa815496d9a8482b6708e541006d14a4efd31287e23eec1897ad354c0472f312
|
|
7
|
+
data.tar.gz: 698905003e0bd8f1e8c7b2b3b3c09d89f8337f80c6ca426357902763f38d2377d15931f2d2198ce996a19d490989de0f5d4134fca38945e79067f3a9fb2bf500
|
|
@@ -20,7 +20,7 @@ module FWToolkit
|
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
desc "proj new [swift|objc] [PROJECT NAME] [CLASS PREFIX]", "Create a new Xcode project with FW's settings. Language is either objc or swift"
|
|
23
|
-
def new(project_language, project_name, class_prefix)
|
|
23
|
+
def new(project_language, project_name, class_prefix="")
|
|
24
24
|
unless project_language == "swift" or project_language == "objc"
|
|
25
25
|
say_status :error, "Project language should be either swift or objc", :red
|
|
26
26
|
return
|
data/lib/fwtoolkit/version.rb
CHANGED
data/templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
CHANGED
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
DEVELOPMENT_TEAM = "";
|
|
393
393
|
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
|
394
394
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
395
|
-
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:
|
|
395
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:project_name] %>";
|
|
396
396
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
397
397
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
398
398
|
};
|
|
@@ -407,7 +407,7 @@
|
|
|
407
407
|
DEVELOPMENT_TEAM = "";
|
|
408
408
|
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
|
409
409
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
410
|
-
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:
|
|
410
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.futureworkshops.<%= config[:project_name] %>";
|
|
411
411
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
412
412
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
413
413
|
};
|