xcodebuilder 0.1.0 → 0.1.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 +4 -4
- data/lib/xcode_builder.rb +3 -2
- 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: 8d015dd1b4653b8506fe175ba0d6d06b52fd7756
|
|
4
|
+
data.tar.gz: 9756e44bedcb196f4830960f831d5f33044d4983
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13ce08ff9ff937507958e4efe4978d244916e4b573da2463c38cff787c0bcba970176dfd19a5251f58b54edbf540066cacef4bf9da330fcb0a20065cace6b24e
|
|
7
|
+
data.tar.gz: 38745ddebddb5c5b7d1effbc99064e52b5062ee7b288aa5935a45b25d77cf5c3a11cad0a559f523356430bcb116998bb0c59d705cbaa20fb5068050fc54ba9ce
|
data/lib/xcode_builder.rb
CHANGED
|
@@ -27,6 +27,7 @@ module XcodeBuilder
|
|
|
27
27
|
:podspec_file => nil,
|
|
28
28
|
:xcodebuild_extra_args => nil,
|
|
29
29
|
:xcrun_extra_args => nil,
|
|
30
|
+
:timestamp_build => nil,
|
|
30
31
|
)
|
|
31
32
|
@namespace = namespace
|
|
32
33
|
yield @configuration if block_given?
|
|
@@ -61,7 +62,7 @@ module XcodeBuilder
|
|
|
61
62
|
clean unless @configuration.skip_clean
|
|
62
63
|
|
|
63
64
|
# update the long version number with the date
|
|
64
|
-
@configuration.timestamp_plist
|
|
65
|
+
@configuration.timestamp_plist if @configuration.timestamp_build
|
|
65
66
|
|
|
66
67
|
print "Building Project..."
|
|
67
68
|
success = xcodebuild @configuration.build_arguments, "build"
|
|
@@ -72,7 +73,7 @@ module XcodeBuilder
|
|
|
72
73
|
# desc "Package the release as a distributable archive"
|
|
73
74
|
def package
|
|
74
75
|
build
|
|
75
|
-
|
|
76
|
+
|
|
76
77
|
print "Packaging and Signing..."
|
|
77
78
|
if (@configuration.signing_identity != nil) then
|
|
78
79
|
puts ""
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcodebuilder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Olivier Larivain
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: CFPropertyList
|