fastlane_core 0.25.1 → 0.25.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: 950205bff4beee76b50c68b0b2e3b792cdaa5557
4
- data.tar.gz: 5e1bac856f0a948ae8e1263d507f6559ea848a37
3
+ metadata.gz: 1b829ff5f4828c96d36d9d24593605dc2ecb872f
4
+ data.tar.gz: 22a87df36dd9eb767c3d86d8008b2a9f488a7593
5
5
  SHA512:
6
- metadata.gz: 6ad09a680db824d36d1061890e57e0502e8e8418d6f5494e4adfcef4d3e9b718a322e2051c623e06ecd1df89cca7873fb1be4af59f425d205dacf5d755d0e981
7
- data.tar.gz: 3c2c65ebde02354b96aff0236b042b7751c1c6d4771212d5b956b406b3d47b25c709dd72b8faea0fa55b1f74c649bceeab1e44145b87dfbef52a960a9b4ffe14
6
+ metadata.gz: fcb986a0ebe76d1d9f5ac52e127c2dcfe3e0f6a995f2d0dede6600d77a16edb000a125d6a97c9f6a6b07534ef77593e06d4dea99b3014ae3b68d0b10ed2714b5
7
+ data.tar.gz: 8cf29c3b36c0024e300d4694cfd19765590c2e409df52ba1d06948fb20b9ad70720335dbac8ba2e0e3ac84d2faa23e310142130765906eaa7b6af18ab0a1da13
data/README.md CHANGED
@@ -36,25 +36,14 @@ Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/Kr
36
36
 
37
37
  This gem contains all shared classes and code:
38
38
 
39
- - Setting up a headless JavaScript browser using [poltergeist](https://github.com/teampoltergeist/poltergeist)
40
- - Login and basic navigation on iTunes Connect
41
- - Login and basic navigation on the Apple Developer Portal
42
39
  - Checking for updates for a specific gem and showing an update message
43
40
  - All output of all tools with different logging levels
44
41
  - Finding of the current Xcode and iTunes Transporter path
45
- - A list of available languages of iTunes Connect
42
+ - Crash Reporting
43
+ - More helper methods and classes
46
44
 
47
45
 
48
46
  # License
49
47
  This project is licensed under the terms of the MIT license. See the LICENSE file.
50
48
 
51
49
  > This project and all fastlane tools are in no way affiliated with Apple Inc. This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. All fastlane tools run on your own computer or server, so your credentials or other sensitive information will never leave your own computer. You are responsible for how you use fastlane tools.
52
-
53
- # Contributing
54
-
55
- 1. Create an issue to start a discussion about your idea
56
- 2. Fork it (https://github.com/KrauseFx/fastlane_core/fork)
57
- 3. Create your feature branch (`git checkout -b my-new-feature`)
58
- 4. Commit your changes (`git commit -am 'Add some feature'`)
59
- 5. Push to the branch (`git push origin my-new-feature`)
60
- 6. Create a new Pull Request
@@ -41,8 +41,8 @@ module FastlaneCore
41
41
  clear_display
42
42
  puts line
43
43
  end
44
+ clear_display # IMPORTANT: This has to be *before* the Process.wait
44
45
  Process.wait(pid)
45
- clear_display
46
46
  end
47
47
  rescue => ex
48
48
  # This could happen when the environment is wrong:
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.25.1"
2
+ VERSION = "0.25.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.1
4
+ version: 0.25.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause