fastlane-plugin-sentry 1.2.7 → 1.2.8

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: 4971909d462db121f8e97209e961192768e6db78
4
- data.tar.gz: 9631ee49dde183ed2ec746d6a90feb0493272d3b
3
+ metadata.gz: e2867ac89ecb33f5d65d0c03aa3819722158098c
4
+ data.tar.gz: d789f8b69b7348e3619615dea6a2faa9fa1a80d6
5
5
  SHA512:
6
- metadata.gz: c72d8b35b0216c33a4157d1758b5abdd803502d508c53aa1db8ff3811b86d1052516e1f42b79044f2a15c2ded56403a218f47880d3a2b15729d98b8626bf1d0b
7
- data.tar.gz: 33b80de4de0276b8da1642e4f80da9262d256c7f519c013f1a33677bb9492847d20f2f4ec965fb656aa1005fbcaebcdcd6f984bb2d8958d52729984db5fd7889
6
+ metadata.gz: f85ada70d5f1bbd24ce52886eaa6c25e3d2fabaa6a0c0eec992953dc0a1a5b05568d7011f41c436ff5f3a16d8c36ac9ac18870062ffd5b431eb81ac0afcdff6d
7
+ data.tar.gz: '08e66a3851c78d41a2416b37347cb13d97871cabe9d796b11efd308abf78eaca4925285f67b668f52d2a0aef3002e533ea490aa7b27a5a55d1ece50688ff3de7'
data/README.md CHANGED
@@ -63,7 +63,7 @@ sentry_upload_file(
63
63
  project_slug: '...',
64
64
  version: '...',
65
65
  app_identifier: '...', # pass in the bundle_identifer of your app
66
- dist: '...', # distribution of the release usually the buildnumber
66
+ dist: '...', # optional distribution of the release usually the buildnumber
67
67
  file: 'main.jsbundle' # file to upload
68
68
  )
69
69
  ```
@@ -76,7 +76,7 @@ sentry_upload_sourcemap(
76
76
  project_slug: '...',
77
77
  version: '...',
78
78
  app_identifier: '...', # pass in the bundle_identifer of your app
79
- dist: '...', # distribution of the release usually the buildnumber
79
+ dist: '...', # optional distribution of the release usually the buildnumber
80
80
  sourcemap: 'main.jsbundle.map', # sourcemap to upload
81
81
  rewrite: true
82
82
  )
@@ -47,7 +47,8 @@ module Fastlane
47
47
  FastlaneCore::ConfigItem.new(key: :version,
48
48
  description: "Release version on Sentry"),
49
49
  FastlaneCore::ConfigItem.new(key: :dist,
50
- description: "Distribution in release"),
50
+ description: "Distribution in release",
51
+ optional: true),
51
52
  FastlaneCore::ConfigItem.new(key: :file,
52
53
  description: "Path to the file to upload",
53
54
  verify_block: proc do |value|
@@ -51,7 +51,8 @@ module Fastlane
51
51
  FastlaneCore::ConfigItem.new(key: :version,
52
52
  description: "Release version on Sentry"),
53
53
  FastlaneCore::ConfigItem.new(key: :dist,
54
- description: "Distribution in release"),
54
+ description: "Distribution in release",
55
+ optional: true),
55
56
  FastlaneCore::ConfigItem.new(key: :sourcemap,
56
57
  description: "Path to the sourcemap to upload",
57
58
  verify_block: proc do |value|
@@ -1,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Sentry
3
- VERSION = "1.2.7"
3
+ VERSION = "1.2.8"
4
4
  CLI_VERSION = "1.9.0"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-sentry
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.7
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-24 00:00:00.000000000 Z
11
+ date: 2017-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry