fastlane-plugin-bugsee 0.1.0 → 1.0.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6473ca49a847f97e29280673d0a7aa748241f9e
|
|
4
|
+
data.tar.gz: 2df58bc8751ee95674806fc28a58c364da7030a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8b290b5fd71c72e4279df3f8c51fcdd3492268b62b2647f73b1fba98ec9b1575ffcea65da9bebb6912665c42d0537487ec953a2a195e3eb83498a01e0816740
|
|
7
|
+
data.tar.gz: 8027d98e8d875a9d028eacd7d494e1871784830cf386918d6b4bf21f75c80b4e636469cb942870bf4a640a23ff3ac2b4b745c6bbd47099725562fb1d34934f21
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Bugsee fastlane plugin
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-bugsee)
|
|
4
4
|
|
|
@@ -12,32 +12,43 @@ fastlane add_plugin bugsee
|
|
|
12
12
|
|
|
13
13
|
## About bugsee
|
|
14
14
|
|
|
15
|
-
Bugsee
|
|
15
|
+
Bugsee is free crash and bug reporting with video, network and logs. Sign up for a service at [https://www.bugsee.com](https://www.bugsee.com). This plugin implements fastlane action to upload debug
|
|
16
|
+
symbol (dSYM) files to Bugsee servers.
|
|
16
17
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
## Example
|
|
20
|
-
|
|
21
|
-
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
|
22
|
-
|
|
23
|
-
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
|
24
|
-
|
|
25
|
-
## Run tests for this plugin
|
|
26
|
-
|
|
27
|
-
To run both the tests, and code style validation, run
|
|
18
|
+
## Usage
|
|
28
19
|
|
|
20
|
+
For uploading symbols during build(gym) (non-bitcode case):
|
|
29
21
|
```
|
|
30
|
-
|
|
22
|
+
lane :mybuildlane do
|
|
23
|
+
gym(
|
|
24
|
+
# your settings for the bild
|
|
25
|
+
)
|
|
26
|
+
upload_symbols_to_bugsee(
|
|
27
|
+
app_token: "<your bugsee app token>",
|
|
28
|
+
)
|
|
29
|
+
end
|
|
31
30
|
```
|
|
32
31
|
|
|
33
|
-
|
|
32
|
+
For refreshing dSYM files from iTunes connect (bit-code case):
|
|
34
33
|
```
|
|
35
|
-
|
|
34
|
+
lane :refresh_dsyms do
|
|
35
|
+
download_dsyms(
|
|
36
|
+
build_number: "1819" # optional, otherwise it will download dSYM for all builds
|
|
37
|
+
) # Download dSYM files from iTC
|
|
38
|
+
upload_symbols_to_bugsee(
|
|
39
|
+
app_token: "<your bugsee app token>",
|
|
40
|
+
)
|
|
41
|
+
clean_build_artifacts # Delete the local dSYM files
|
|
42
|
+
end
|
|
36
43
|
```
|
|
37
44
|
|
|
45
|
+
## Documentation
|
|
46
|
+
|
|
47
|
+
Further documentation about Bugsee crash symbolication is available at https://docs.bugsee.com
|
|
48
|
+
|
|
38
49
|
## Issues and Feedback
|
|
39
50
|
|
|
40
|
-
For any other issues and feedback about this plugin,
|
|
51
|
+
For any other issues and feedback about this plugin, contact Bugsee support at support@bugsee.net.
|
|
41
52
|
|
|
42
53
|
## Troubleshooting
|
|
43
54
|
|
|
@@ -47,6 +58,4 @@ If you have trouble using plugins, check out the [Plugins Troubleshooting](https
|
|
|
47
58
|
|
|
48
59
|
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
|
49
60
|
|
|
50
|
-
## About `fastlane`
|
|
51
61
|
|
|
52
|
-
`fastlane` is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
|
@@ -37,7 +37,7 @@ module Fastlane
|
|
|
37
37
|
command << "-x -l #{app_token}"
|
|
38
38
|
command += dsym_paths
|
|
39
39
|
begin
|
|
40
|
-
Actions.sh(command.join(" "), log:
|
|
40
|
+
Actions.sh(command.join(" "), log: false)
|
|
41
41
|
rescue => ex
|
|
42
42
|
UI.error ex.to_s # it fails, however we don't want to fail everything just for this
|
|
43
43
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-bugsee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dmitry Fink
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|