betabuilder 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/lib/beta_builder/deployment_strategies/testflight.rb +1 -1
- metadata +4 -4
data/README.md
CHANGED
@@ -4,7 +4,7 @@ BetaBuilder is a simple collection of Rake tasks and utilities for managing and
|
|
4
4
|
|
5
5
|
If you're looking for the OSX BetaBuilder app -- to which this gem owes most of the credit -- you can find it [here on Github](http://github.com/HunterHillegas/iOS-BetaBuilder).
|
6
6
|
|
7
|
-
##
|
7
|
+
## Motivation
|
8
8
|
|
9
9
|
The problem with using a GUI app to create the beta packages is that it is yet another manual step in the process of producing an ad-hoc build for your beta testers. It simplifies some steps but it still requires running Build and Archive in Xcode, saving the resulting build as an IPA package, running the Beta Builder app, locating the IPA, filling in the rest of the fields and generating the deployment files. Then you need to upload those files somewhere.
|
10
10
|
|
@@ -23,7 +23,7 @@ module BetaBuilder
|
|
23
23
|
:file => File.new(@configuration.ipa_path, 'rb'),
|
24
24
|
:notes => get_notes,
|
25
25
|
:distribution_lists => (@configuration.distribution_lists || []).join(","),
|
26
|
-
:notify => false
|
26
|
+
:notify => @configuration.notify || false
|
27
27
|
}
|
28
28
|
puts "Uploading build to TestFlight..."
|
29
29
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: betabuilder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 0.4.
|
9
|
+
- 1
|
10
|
+
version: 0.4.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Luke Redpath
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-02-11 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|