sigh 1.2.1 → 1.2.2

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: 8931fb86e623fc3a680e26e00670a7d442b90ef9
4
- data.tar.gz: 7a2393ac3c0efe856cc89e5f5fa6a56c761bf850
3
+ metadata.gz: 30b235b99437637cdff9c2803be57b0369e91e24
4
+ data.tar.gz: 0536c7e175e49a65342211d45b8ab7aac708587c
5
5
  SHA512:
6
- metadata.gz: fe9185957e903724e97c58ba9b01847b52d9387a20d8f59078898aef592b1d5b2a8733c9b00e95ca8ec662cd6ccaeeaf9e83da10daf95a38d7269e9e3c7d7067
7
- data.tar.gz: ef4e9a965a3b5765f4a2aed4f25362fc186f43ff03e81eb8ad436bef842a22db83b975e3b3080805ba2968a5ec022f9dbe1b10e0983516594a3ffa93a6c629f0
6
+ metadata.gz: b37eac7871a84054c390e18c9d0ebe62fdf1d542fa6f634ed5351f6a670d3b1b549482bdcc23ea34c87b31a5a899ab28816b190c91616b7ddece4f6e99c8fb44
7
+ data.tar.gz: 292c8bec8c07b0e454ad98617ab87b6311ffd9b98adefb1e9d07390f39e53ebaf8a05e226096874f55777d701b5c8a38e87f070746c74977c4dc7cfc39322089
data/README.md CHANGED
@@ -17,7 +17,8 @@
17
17
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
- <a href="https://github.com/fastlane/scan">scan</a>
20
+ <a href="https://github.com/fastlane/scan">scan</a> &bull;
21
+ <a href="https://github.com/fastlane/match">match</a>
21
22
  </p>
22
23
  -------
23
24
 
@@ -28,8 +29,8 @@
28
29
  sigh
29
30
  ============
30
31
 
31
- [![Twitter: @KauseFx](https://img.shields.io/badge/contact-@KrauseFx-blue.svg?style=flat)](https://twitter.com/KrauseFx)
32
- [![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/KrauseFx/sigh/blob/master/LICENSE)
32
+ [![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
33
+ [![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/sigh/blob/master/LICENSE)
33
34
  [![Gem](https://img.shields.io/gem/v/sigh.svg?style=flat)](http://rubygems.org/gems/sigh)
34
35
  [![Build Status](https://img.shields.io/travis/fastlane/sigh/master.svg?style=flat)](https://travis-ci.org/fastlane/sigh)
35
36
 
@@ -37,7 +38,7 @@ sigh
37
38
 
38
39
  `sigh` can create, renew, download and repair provisioning profiles (with one command). It supports App Store, Ad Hoc, Development and Enterprise profiles and supports nice features, like auto-adding all test devices.
39
40
 
40
- Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/KrauseFx)
41
+ Get in contact with the developer on Twitter: [@FastlaneTools](https://twitter.com/FastlaneTools)
41
42
 
42
43
  -------
43
44
  <p align="center">
@@ -180,7 +181,7 @@ If you generated your `ipa` file but want to apply a different code signing onto
180
181
 
181
182
  You can pass more information using the command line:
182
183
 
183
- sigh resign ./path/app.ipa -i "iPhone Distribution: Felix Krause" -n "my.mobileprovision"
184
+ sigh resign ./path/app.ipa --signing_identity "iPhone Distribution: Felix Krause" -n "my.mobileprovision"
184
185
 
185
186
  # Manage
186
187
 
@@ -225,6 +226,7 @@ If you're using [cert](https://github.com/fastlane/cert) in combination with [fa
225
226
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
226
227
  - [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
227
228
  - [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
229
+ - [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
228
230
 
229
231
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
230
232
 
data/bin/sigh CHANGED
@@ -4,7 +4,6 @@ $:.push File.expand_path("../../lib", __FILE__)
4
4
 
5
5
  require 'sigh'
6
6
  require 'commander'
7
- require 'credentials_manager/password_manager'
8
7
  require 'credentials_manager/appfile_config'
9
8
  require 'sigh/options'
10
9
  require 'sigh/manager'
@@ -20,7 +19,7 @@ class SighApplication
20
19
  program :description, 'CLI for \'sigh\' - Because you would rather spend your time building stuff than fighting provisioning'
21
20
  program :help, 'Author', 'Felix Krause <sigh@krausefx.com>'
22
21
  program :help, 'Website', 'https://fastlane.tools'
23
- program :help, 'GitHub', 'https://github.com/krausefx/sigh'
22
+ program :help, 'GitHub', 'https://github.com/fastlane/sigh'
24
23
  program :help_formatter, :compact
25
24
 
26
25
  global_option('--verbose') { $verbose = true }
@@ -12,6 +12,7 @@ module Sigh
12
12
  end
13
13
 
14
14
  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
15
+ UI = FastlaneCore::UI
15
16
 
16
17
  ENV['FASTLANE_TEAM_ID'] ||= ENV["SIGH_TEAM_ID"]
17
18
  ENV['DELIVER_USER'] ||= ENV["SIGH_USERNAME"]
@@ -34,7 +34,7 @@ module Sigh
34
34
  profile = profile.update! # assign it, as it's a new profile
35
35
  end
36
36
  else
37
- Helper.log.info "No existing profiles, creating a new one for you".yellow
37
+ Helper.log.info "No existing profiles found, that match the certificates you have installed, creating a new one for you".yellow
38
38
  ensure_app_exists!
39
39
  profile = create_profile!
40
40
  end
@@ -164,7 +164,8 @@ module Sigh
164
164
  profile_name ||= "#{profile.class.pretty_type}_#{Sigh.config[:app_identifier]}.mobileprovision" # default name
165
165
  profile_name += '.mobileprovision' unless profile_name.include? 'mobileprovision'
166
166
 
167
- output_path = File.join('/tmp', profile_name)
167
+ tmp_path = Dir.mktmpdir("profile_download")
168
+ output_path = File.join(tmp_path, profile_name)
168
169
  File.open(output_path, "wb") do |f|
169
170
  f.write(profile.download)
170
171
  end
@@ -1,3 +1,3 @@
1
1
  module Sigh
2
- VERSION = "1.2.1"
2
+ VERSION = "1.2.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sigh
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-10 00:00:00.000000000 Z
11
+ date: 2016-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.26.4
19
+ version: 0.30.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 1.0.0
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.26.4
29
+ version: 0.30.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.0.0