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: 07b2fff65d9dc208d3b97c1d4dbd4987044b3bd6
4
- data.tar.gz: 3ce1acef16314e0101e97da1f2e613993e570095
3
+ metadata.gz: d6473ca49a847f97e29280673d0a7aa748241f9e
4
+ data.tar.gz: 2df58bc8751ee95674806fc28a58c364da7030a6
5
5
  SHA512:
6
- metadata.gz: 53575ac007517cc0d0d31a356c78c97f81af17d6219395ac3aa6e7274e828da8720e90bbd6d490115aea0fff9e9bdebaf72d91a3487ca555514e2388651b6cb3
7
- data.tar.gz: d23e6374923e1424f0d0e00f2355095d0a06b234fd93e1ac1ae93f8da72410a3c736396119aed0d2c8b1dfc164a848b0a6603a7e4dac579a95616c4eda22c743
6
+ metadata.gz: d8b290b5fd71c72e4279df3f8c51fcdd3492268b62b2647f73b1fba98ec9b1575ffcea65da9bebb6912665c42d0537487ec953a2a195e3eb83498a01e0816740
7
+ data.tar.gz: 8027d98e8d875a9d028eacd7d494e1871784830cf386918d6b4bf21f75c80b4e636469cb942870bf4a640a23ff3ac2b4b745c6bbd47099725562fb1d34934f21
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # bugsee plugin
1
+ # Bugsee fastlane plugin
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](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 symbols uploader
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
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
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
- rake
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
- To automatically fix many of the styling issues, use
32
+ For refreshing dSYM files from iTunes connect (bit-code case):
34
33
  ```
35
- rubocop -a
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, please submit it to this repository.
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: true)
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Bugsee
3
- VERSION = "0.1.0"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  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: 0.1.0
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-13 00:00:00.000000000 Z
11
+ date: 2017-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry