slowlane 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bf3c345ce9af7157174e4eade2da0a1713e5e4c2
4
- data.tar.gz: cb68db258e3828b7845ce8c79fe83a2a87a5561f
3
+ metadata.gz: 996343b2a57956f5100f61500678e87e2dbe9c75
4
+ data.tar.gz: fb77f22fc606a9bb76929b3993507a78dd13888b
5
5
  SHA512:
6
- metadata.gz: ec77d6e10cba90b55c0052dcc8ef5db10269ba53b6aed1aa5fdd339a5c85f07902d1a0a4af0bce92510d99d221cc4efabfb2936192957c661d5f70625f00b3f8
7
- data.tar.gz: 2b865ec3bdc2c88d90df73ffa5e11209054df96738f965ad7f755eb6a23163b08ff341d94b78f3b32a989c1562d892a837ef8f6a34d310a54831267703188626
6
+ metadata.gz: 5824f0339b803eb797697d722841160778d3bf551caedc034219787ae8457da899ba2b2cf0bb1667f1696261c87bc83ea268b3401eb74208b994c096b785f496
7
+ data.tar.gz: d6d08faed6f369f4934c265ed820239eb420e5fefebf5746eb873a9c1da831dbcbbdbe9c96ac743add3dc6fa775fa8443e29b0a146cf9d2d19b9d83a348db185
data/README.md CHANGED
@@ -17,10 +17,25 @@ Don't get us wrong, we think fastlane is **great** , but we are one of those wh
17
17
 
18
18
  We leverage 'spaceship' library and will continue to work on that to have a shared
19
19
 
20
+ ## Love feedback!
21
+ Let us know if you like this! [We're only one tweet away!](http://twitter.com/slowlane)
22
+
20
23
  ## Status
21
- Real alpha , as we are still exploring the spaceship api
24
+ Current able to list most items, moving on to create & delete
25
+
26
+ `gem install slowlane`
27
+
28
+ results in two binaries: `slowlane-itunes` & `slowlane-portal`
22
29
 
23
30
  ### Working
31
+ #### environment vars
32
+ - `SLOWLANE_ITUNES_USER`
33
+ - `SLOWLANE_ITUNES_PASSWORD`
34
+ - `SLOWLANE_ITUNES_TEAM`
35
+ - `SLOWLANE_PORTAL_USER`
36
+ - `SLOWLANE_PORTAL_PASSWORD`
37
+ - `SLOWLANE_PORTAL_TEAM`
38
+
24
39
  #### Portal
25
40
  - `slowlane-portal app list`
26
41
  - `slowlane-portal certificate list`
data/bin/slowlane-itunes CHANGED
@@ -22,7 +22,7 @@ class SlowlaneItunes < Thor
22
22
  desc "build SUBCOMMAND ...ARGS", "manage builds"
23
23
  subcommand "build", Slowlane::Itunes::Build
24
24
 
25
- desc "tester SUBCOMMAND ...ARGS", "manage builds"
25
+ desc "tester SUBCOMMAND ...ARGS", "manage testers"
26
26
  subcommand "tester", Slowlane::Itunes::Tester
27
27
 
28
28
  end
data/bin/slowlane-portal CHANGED
@@ -30,10 +30,10 @@ class SlowlanePortal < Thor
30
30
  desc "team SUBCOMMAND ...ARGS", "manage teams"
31
31
  subcommand "team", Slowlane::Portal::Team
32
32
 
33
- desc "psn SUBCOMMAND ...ARGS", "manage teams"
33
+ desc "psn SUBCOMMAND ...ARGS", "manage push notifications"
34
34
  subcommand "psn", Slowlane::Portal::Psn
35
35
 
36
- desc "certificate SUBCOMMAND ...ARGS", "manage teams"
36
+ desc "certificate SUBCOMMAND ...ARGS", "manage certificates"
37
37
  subcommand "certificate", Slowlane::Portal::Certificate
38
38
  end
39
39
 
@@ -5,8 +5,8 @@ class Utils
5
5
 
6
6
  credentials = OpenStruct.new
7
7
 
8
- if ENV['SLOWLANE_USERNAME']
9
- credentials.username=ENV['SLOWLANE_USERNAME']
8
+ if ENV['SLOWLANE_ITUNES_USERNAME']
9
+ credentials.username=ENV['SLOWLANE_ITUNES_USERNAME']
10
10
  else
11
11
  if options[:username] == '<username>'
12
12
  puts "username is required"
@@ -16,8 +16,8 @@ class Utils
16
16
  end
17
17
  end
18
18
 
19
- if ENV['SLOWLANE_PASSWORD']
20
- credentials.password=ENV['SLOWLANE_PASSWORD']
19
+ if ENV['SLOWLANE_ITUNES_PASSWORD']
20
+ credentials.password=ENV['SLOWLANE_ITUNES_PASSWORD']
21
21
  else
22
22
  if options[:password] == '<password>'
23
23
  puts "password is required"
@@ -5,8 +5,8 @@ class Utils
5
5
 
6
6
  credentials = OpenStruct.new
7
7
 
8
- if ENV['SLOWLANE_USERNAME']
9
- credentials.username=ENV['SLOWLANE_USERNAME']
8
+ if ENV['SLOWLANE_PORTAL_USERNAME']
9
+ credentials.username=ENV['SLOWLANE_PORTAL_USERNAME']
10
10
  else
11
11
  if options[:username] == '<username>'
12
12
  puts "username is required"
@@ -16,8 +16,8 @@ class Utils
16
16
  end
17
17
  end
18
18
 
19
- if ENV['SLOWLANE_PASSWORD']
20
- credentials.password=ENV['SLOWLANE_PASSWORD']
19
+ if ENV['SLOWLANE_PORTAL_PASSWORD']
20
+ credentials.password=ENV['SLOWLANE_PORTAL_PASSWORD']
21
21
  else
22
22
  if options[:password] == '<password>'
23
23
  puts "password is required"
data/slowlane.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "slowlane"
5
- s.version = "0.0.4"
5
+ s.version = "0.0.5"
6
6
  s.platform = Gem::Platform::RUBY
7
7
  s.license = 'MIT'
8
8
  s.authors = ["Patrick Debois"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slowlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Debois