fastlane_core 0.26.1 → 0.26.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d791cd9f98f382ea36b02f7adbed0bc5f18abaa1
4
- data.tar.gz: bd426de71c32011cd1ec12f4d09e7a2967440132
3
+ metadata.gz: 63ba0fbf8f973429f9b3bb6eee45d4e85c5be330
4
+ data.tar.gz: d4f0ce50e4db6e7ef5ecce028959e1dbcad71060
5
5
  SHA512:
6
- metadata.gz: 414f01c0bf4d48aa21399963ccbe02930c6b6ee28eb23a4c776b1579a1f682a0c3904854c55d938e5ecf4922e703baad2ca71d0030c4de4433e2a709e4e434bf
7
- data.tar.gz: 8fe47afaa1fa8f0675ff4827c373792ee9b4321b6356bc7b5686c0232a1062b7ed7502992d39cb6286b6f298d2aacfe573f3fcf61ef06e410509dae666462934
6
+ metadata.gz: 4a3b28cadc036908f8833ed8f17f992edbc02128ccf33dd2da15056fe66bc6c7112b6bd735432b0bbbe49c64ba2ab2364fb5dcded27c64b68193cc375e3d0114
7
+ data.tar.gz: 0a4fda46830e9b9f64a90636e6d48887d8b6b61a206d39a05ebc13587fca0452b1b535efaca531c7a80ba9ef88eae51f39bf9efedb7c456714e8dd702a722593
@@ -8,9 +8,9 @@ module FastlaneCore
8
8
 
9
9
  def enable
10
10
  File.write(file_path, "1")
11
- puts "Successfully enabled crash reporting for future crashes".green
12
- puts "This will only send the stack trace the installed gems to sentry".green
13
- puts "Thanks for helping making fastlane better".green
11
+ puts "Successfully enabled crash reporting.".green
12
+ puts "This will only send a stack trace for installed gems to Sentry.".green
13
+ puts "Thanks for improving fastlane!".green
14
14
  end
15
15
 
16
16
  def disable
@@ -24,10 +24,10 @@ module FastlaneCore
24
24
 
25
25
  def show_message
26
26
  puts "-------------------------------------------------------------------------------------------".yellow
27
- puts "😨 An error occured. Please enable crash reports using `fastlane enable_crash_reporting`".yellow
28
- puts "👍 This makes resolving issues much easier and helps improving fastlane".yellow
29
- puts "🔒 The reports might contain personal data, but will be stored securely on getsentry.com".yellow
30
- puts "✨ Once crash reporting is enabled, you have much cleaner output when something goes wrong".yellow
27
+ puts "😨 An error occured. Please enable crash reports using `fastlane enable_crash_reporting`.".yellow
28
+ puts "👍 This makes resolving issues much easier and helps improve fastlane.".yellow
29
+ puts "🔒 The reports will be stored securely on getsentry.com.".yellow
30
+ puts "✨ Once crash reporting is enabled, you get a clean output when something goes wrong.".yellow
31
31
  puts "🙊 More information about privacy: https://github.com/KrauseFx/fastlane/releases/tag/1.33.3".yellow
32
32
  puts "-------------------------------------------------------------------------------------------".yellow
33
33
  end
@@ -37,12 +37,12 @@ module FastlaneCore
37
37
  return if enabled?
38
38
 
39
39
  puts "-------------------------------------------------------------------------------------------".yellow
40
- puts "😃 Do you want to enable crash reporting when fastlane experiences a problem?".yellow
41
- puts "👍 This makes resolving issues much easier and helps improving fastlane".yellow
42
- puts "🔒 The reports might contain personal data, but will be stored securely on getsentry.com".yellow
43
- puts "✨ Once crash reporting is enabled, you have much cleaner output when something goes wrong".yellow
40
+ puts "😃 Enable crash reporting when fastlane experiences a problem?".yellow
41
+ puts "👍 This makes resolving issues much easier and helps improve fastlane.".yellow
42
+ puts "🔒 The reports will be stored securely on getsentry.com".yellow
43
+ puts "✨ Once crash reporting is enabled, you get a clean output when something goes wrong".yellow
44
44
  puts "🙊 More information about privacy: https://github.com/KrauseFx/fastlane/releases/tag/1.33.3".yellow
45
- puts "🌴 You can always enable crash reports at a later point using `fastlane enable_crash_reporting`".yellow
45
+ puts "🌴 You can always disable crash reports at anytime `fastlane disable_crash_reporting`".yellow
46
46
  puts "-------------------------------------------------------------------------------------------".yellow
47
47
  if agree("Do you want to enable crash reporting? (y/n) ", true)
48
48
  enable
@@ -78,9 +78,9 @@ module FastlaneCore
78
78
  crash = Raven.capture_exception(ex)
79
79
  path = "/tmp/sentry_#{crash.id}.json"
80
80
  File.write(path, JSON.pretty_generate(crash.to_hash))
81
- puts "Successfully submitted crash report. If this is a problem with one of the tools you want to report".yellow
81
+ puts "Successfully submitted a crash report. If this is a problem with one of the tools specifically,".yellow
82
82
  puts "please submit an issue on GitHub and attach the following number to it: '#{crash.id}'".yellow
83
- puts "Also stored the crash report locally '#{path}'".yellow
83
+ puts "The crash report has been stored locally '#{path}'".yellow
84
84
  rescue => ex
85
85
  Helper.log.debug ex # We don't want crash reporting to cause crash
86
86
  end
@@ -4,6 +4,8 @@ module FastlaneCore
4
4
  module Helper
5
5
  # Logging happens using this method
6
6
  def self.log
7
+ $stdout.sync = true
8
+
7
9
  if is_test?
8
10
  @@log ||= Logger.new(nil) # don't show any logs when running tests
9
11
  else
@@ -51,7 +53,7 @@ module FastlaneCore
51
53
  # @return [boolean] true if building in a known CI environment
52
54
  def self.ci?
53
55
  # Check for Jenkins, Travis CI, ... environment variables
54
- ['JENKINS_URL', 'TRAVIS', 'CIRCLECI', 'CI'].each do |current|
56
+ ['JENKINS_URL', 'TRAVIS', 'CIRCLECI', 'CI', 'TEAMCITY_VERSION', 'GO_PIPELINE_NAME', 'bamboo_buildKey'].each do |current|
55
57
  return true if ENV.key?(current)
56
58
  end
57
59
  return false
@@ -18,7 +18,7 @@ module FastlaneCore
18
18
 
19
19
  params = {}
20
20
  params[:rows] = rows
21
- params[:title] = title if title
21
+ params[:title] = title.green if title
22
22
 
23
23
  puts ""
24
24
  puts Terminal::Table.new(params)
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.26.1"
2
+ VERSION = "0.26.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.1
4
+ version: 0.26.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-10-30 00:00:00.000000000 Z
11
+ date: 2015-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -362,7 +362,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
362
362
  version: '0'
363
363
  requirements: []
364
364
  rubyforge_project:
365
- rubygems_version: 2.4.8
365
+ rubygems_version: 2.4.6
366
366
  signing_key:
367
367
  specification_version: 4
368
368
  summary: Contains all shared code/dependencies of the fastlane.tools