fastlane-plugin-rollbar 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: 246e795301ee29bf5f9598cdf07f122766c7af58b86a5c7529f92da5d9e14498
4
- data.tar.gz: b8a6d08ac6c3d3902ca6ce28b8960112f62ef5c9b2d6eca8eccb618cfe66d873
3
+ metadata.gz: e22024c88599c9bb78b7c7acb122afbc033476db39f56e39aeefc81879c2c37c
4
+ data.tar.gz: 9e6ba5e2201370dfcd88674e8d0c49fe0798fd94e1d40ead68eafcae3a13023f
5
5
  SHA512:
6
- metadata.gz: 508479d90dde1da98a363dad9e2f8c7b995856e0c81e3db1ec10d259f3535129839ab55d911a4a02539d407bdda139a0935d407889d600bcc92f587e2b6b70b2
7
- data.tar.gz: 27b18faa6a4d0773993d71afb2e1e7a87ad1b91d76c43f6d5514b1fd8dd4343445cadb5497ea35fa8b4721b0af8d4d183e8174772ae4e0d3f4aa9f2fa8f656ea
6
+ metadata.gz: 4b2497d06feb3cedb5e5d25107ef51d13241bfef410818e6812ae5691e6c18a897af070c3f3fb4522a0a9b84a4c70a415d7146b2e822f5b75745bd0ccb50b7fd
7
+ data.tar.gz: d345a1560703068b387e405476cc0fe2a4babaa6f6c0792d57922e9faad295465c13e8c9ab725978b6c7ed080ccdc34897a7581e7473a3d5b51edaa54f98ac43
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # rollbar 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-rollbar)
4
+ [![Gem Version](https://badge.fury.io/rb/fastlane-plugin-rollbar.svg)](https://badge.fury.io/rb/fastlane-plugin-rollbar)
4
5
 
5
6
  ## Getting Started
6
7
 
@@ -19,7 +20,7 @@ Helps to upload sourcemaps/dsyms/proguard mapping/deploy report to Rollbar
19
20
  ```
20
21
  rollbar_sourcemaps_upload(
21
22
  api_key: 'YOUR_ROLLBAR_SERVER_API_KEY',
22
- os: ['ios', 'android'],
23
+ os: 'ios', // 'android'
23
24
  code_version: 'your_code_version'
24
25
  environment: 'production',
25
26
  )
@@ -5,7 +5,7 @@ require_relative '../helper/rollbar_helper'
5
5
 
6
6
  module Fastlane
7
7
  module Actions
8
- class RollbarAction < Action
8
+ class RollbarSourcemapsUploadAction < Action
9
9
  def self.run(params)
10
10
  Helper::RollbarHelper.create_bundle(os)
11
11
  Helper::RollbarHelper.upload_bundle(
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fastlane
4
4
  module Rollbar
5
- VERSION = '0.1.4'.freeze
5
+ VERSION = '0.1.5'.freeze
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-rollbar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evgrafov Denis