zake 0.1 → 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.
- data/bin/zake +8 -9
- metadata +3 -2
data/bin/zake
CHANGED
|
@@ -8,18 +8,17 @@ end
|
|
|
8
8
|
local_filename = "#{ARGV[0]}/Rakefile"
|
|
9
9
|
|
|
10
10
|
rake_file = %Q{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
BetaBuilder::Tasks.new do |config|
|
|
11
|
+
require 'rubygems'
|
|
12
|
+
require 'zake'
|
|
15
13
|
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
BetaBuilder::Tasks.new do |config|
|
|
15
|
+
config.target = "<TARGET_NAME>"
|
|
16
|
+
config.configuration = "Release"
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
end
|
|
18
|
+
config.deploy_using(:hockeyapp) do |happ|
|
|
19
|
+
happ.api_token = "<TOKEN>"
|
|
22
20
|
end
|
|
21
|
+
end
|
|
23
22
|
}
|
|
24
23
|
|
|
25
24
|
File.open(local_filename, 'w') {|f| f.write(rake_file) }
|
metadata
CHANGED
|
@@ -5,7 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
9
10
|
platform: ruby
|
|
10
11
|
authors:
|
|
11
12
|
- Sergey Zenchenko
|
|
@@ -123,6 +124,6 @@ rubyforge_project:
|
|
|
123
124
|
rubygems_version: 1.3.6
|
|
124
125
|
signing_key:
|
|
125
126
|
specification_version: 3
|
|
126
|
-
summary: A set of Rake tasks and utilities for managing iOS ad-hoc builds
|
|
127
|
+
summary: A set of Rake tasks and utilities for managing iOS ad-hoc builds (Based on betabuilder)
|
|
127
128
|
test_files: []
|
|
128
129
|
|