xcbootstrap 0.0.1 → 0.0.2
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/xcbootstrap/version.rb +1 -1
- data/templates/Sample/gitignore +1 -0
- data/templates/simple/Rakefile +2 -2
- data/templates/simple/app/configuration/debug.xcconfig +1 -1
- data/templates/simple/app/simple.xcodeproj/project.pbxproj +1 -1
- data/templates/simple/app/simple.xcodeproj/xcshareddata/xcschemes/simple.xcscheme +3 -3
- data/templates/simple/gitignore +1 -0
- data/templates/static-lib/gitignore +1 -0
- data/templates/static-lib/lib/configuration/debug.xcconfig +1 -1
- data/templates/static-lib/lib/static-lib.xcodeproj/project.pbxproj +1 -1
- data/templates/static-lib/lib/static-lib.xcodeproj/xcshareddata/xcschemes/static-lib.xcscheme +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fef8f36480d2bc5ad7c1f233f8c09e61f5f9c17c
|
|
4
|
+
data.tar.gz: 8967180a2373a72dd90ad9692456b77cb58af9bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f52e6ba43aff4bdafd0666e33453eb0c132e9f32eed559d2dbc6b2a2e015421b8f28531c70083fc4a431056f1c186be1a74c96a5ab39bb4a7ab2e04e9f64b662
|
|
7
|
+
data.tar.gz: 453fdcfc856a90fad67f93a744a336eb4a1fc788f7d435c6486672f05d11a28435df94fc18b58c5436959542a5844a4f5c589c4698f2ac4c434086b948fbbea1
|
data/lib/xcbootstrap/version.rb
CHANGED
data/templates/Sample/gitignore
CHANGED
data/templates/simple/Rakefile
CHANGED
|
@@ -22,12 +22,12 @@ end
|
|
|
22
22
|
|
|
23
23
|
desc "Clean and build the app"
|
|
24
24
|
task :build do
|
|
25
|
-
system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphoneos clean build") || fail("Error building app")
|
|
25
|
+
system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphoneos clean build ONLY_ACTIVE_ARCH=NO") || fail("Error building app")
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
desc "Clean, build the app, run unit tests"
|
|
29
29
|
task :test do
|
|
30
|
-
system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphonesimulator clean test") || fail("Error running unit tests")
|
|
30
|
+
system("xctool -workspace simple.xcworkspace -scheme simple -sdk iphonesimulator clean test ONLY_ACTIVE_ARCH=NO") || fail("Error running unit tests")
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
desc "Configure Frank tests"
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
C911D62B16C3C62A004D8F4B /* Project object */ = {
|
|
249
249
|
isa = PBXProject;
|
|
250
250
|
attributes = {
|
|
251
|
-
LastUpgradeCheck =
|
|
251
|
+
LastUpgradeCheck = 0500;
|
|
252
252
|
ORGANIZATIONNAME = yourcompanyname;
|
|
253
253
|
};
|
|
254
254
|
buildConfigurationList = C911D62E16C3C62A004D8F4B /* Build configuration list for PBXProject "simple" */;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<Scheme
|
|
3
|
-
LastUpgradeVersion = "
|
|
3
|
+
LastUpgradeVersion = "0500"
|
|
4
4
|
version = "1.3">
|
|
5
5
|
<BuildAction
|
|
6
6
|
parallelizeBuildables = "YES"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
buildForAnalyzing = "YES">
|
|
15
15
|
<BuildableReference
|
|
16
16
|
BuildableIdentifier = "primary"
|
|
17
|
-
BlueprintIdentifier = "
|
|
17
|
+
BlueprintIdentifier = "10AFB06DF22E4F6E842C24E0"
|
|
18
18
|
BuildableName = "libPods.a"
|
|
19
19
|
BlueprintName = "Pods"
|
|
20
20
|
ReferencedContainer = "container:../Pods/Pods.xcodeproj">
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
buildForAnalyzing = "YES">
|
|
29
29
|
<BuildableReference
|
|
30
30
|
BuildableIdentifier = "primary"
|
|
31
|
-
BlueprintIdentifier = "
|
|
31
|
+
BlueprintIdentifier = "C5E81ECE7D8E40C2B2F17B38"
|
|
32
32
|
BuildableName = "libPods-test.a"
|
|
33
33
|
BlueprintName = "Pods-test"
|
|
34
34
|
ReferencedContainer = "container:../Pods/Pods.xcodeproj">
|
data/templates/simple/gitignore
CHANGED
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
C911D62B16C3C62A004D8F4B /* Project object */ = {
|
|
299
299
|
isa = PBXProject;
|
|
300
300
|
attributes = {
|
|
301
|
-
LastUpgradeCheck =
|
|
301
|
+
LastUpgradeCheck = 0500;
|
|
302
302
|
ORGANIZATIONNAME = yourcompanyname;
|
|
303
303
|
};
|
|
304
304
|
buildConfigurationList = C911D62E16C3C62A004D8F4B /* Build configuration list for PBXProject "static-lib" */;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcbootstrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stewart Gleadow
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ptools
|