xcoderake 0.0.1 → 0.1.0
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.
- data/History.txt +5 -0
- data/lib/xcoderake.rb +6 -0
- metadata +3 -3
data/History.txt
CHANGED
data/lib/xcoderake.rb
CHANGED
|
@@ -98,6 +98,12 @@ task :clean_xcode do
|
|
|
98
98
|
system "xcodebuild clean"
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
+
desc "List the available dependencies and versions"
|
|
102
|
+
task :list do
|
|
103
|
+
puts "Remote dependencies that are available on #{$server}:"
|
|
104
|
+
system "ssh #{$server} ls #{$remote_repository}"
|
|
105
|
+
end
|
|
106
|
+
|
|
101
107
|
|
|
102
108
|
def xcodebuild target,config,sdk
|
|
103
109
|
build_string = "xcodebuild -target '#{target}' -sdk #{sdk} -configuration '#{config}'"
|
metadata
CHANGED
|
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
|
-
- 0
|
|
8
7
|
- 1
|
|
9
|
-
|
|
8
|
+
- 0
|
|
9
|
+
version: 0.1.0
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Christian Hedin
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-04-
|
|
17
|
+
date: 2010-04-20 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|