kick 0.0.4 → 0.0.5
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/lib/kick.rb +7 -2
- metadata +2 -2
data/lib/kick.rb
CHANGED
|
@@ -51,14 +51,19 @@ class Kick
|
|
|
51
51
|
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
def dist
|
|
54
|
+
def dist(distribution_list=nil)
|
|
55
55
|
|
|
56
56
|
self.build
|
|
57
57
|
|
|
58
58
|
notes = @build_settings.notes
|
|
59
59
|
api_token = @build_settings.api_token
|
|
60
60
|
team_token = @build_settings.team_token
|
|
61
|
-
distribution_list
|
|
61
|
+
if distribution_list == nil
|
|
62
|
+
distribution_list = @build_settings.distribution_list
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
puts "Enter your notes:\n"
|
|
66
|
+
notes = gets
|
|
62
67
|
|
|
63
68
|
command_deploy = "ipa distribute:testflight -a #{api_token} -T #{team_token} -m '#{notes}' -l #{distribution_list} --notify --verbose"
|
|
64
69
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kick
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
12
|
+
date: 2014-06-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Build & push your iOS app to TestFlight
|
|
15
15
|
email: michal.lukasiewicz@brightinventions.pl
|