fastlane-plugin-rollbar 0.1.3 → 0.1.4
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 +4 -4
- data/lib/fastlane/plugin/{rollbar_sourcemaps_upload.rb → rollbar.rb} +1 -1
- data/lib/fastlane/plugin/rollbar/actions/rollbar_dsym_upload_action.rb +1 -1
- data/lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb +1 -1
- data/lib/fastlane/plugin/rollbar/actions/rollbar_report_deploy_action.rb +1 -1
- data/lib/fastlane/plugin/rollbar/actions/rollbar_sourcemaps_upload_action.rb +3 -3
- data/lib/fastlane/plugin/rollbar/helper/rollbar_helper.rb +2 -2
- data/lib/fastlane/plugin/rollbar/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 246e795301ee29bf5f9598cdf07f122766c7af58b86a5c7529f92da5d9e14498
|
4
|
+
data.tar.gz: b8a6d08ac6c3d3902ca6ce28b8960112f62ef5c9b2d6eca8eccb618cfe66d873
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 508479d90dde1da98a363dad9e2f8c7b995856e0c81e3db1ec10d259f3535129839ab55d911a4a02539d407bdda139a0935d407889d600bcc92f587e2b6b70b2
|
7
|
+
data.tar.gz: 27b18faa6a4d0773993d71afb2e1e7a87ad1b91d76c43f6d5514b1fd8dd4343445cadb5497ea35fa8b4721b0af8d4d183e8174772ae4e0d3f4aa9f2fa8f656ea
|
@@ -13,6 +13,6 @@ end
|
|
13
13
|
|
14
14
|
# By default we want to import all available actions and helpers
|
15
15
|
# A plugin can contain any number of actions and plugins
|
16
|
-
Fastlane::
|
16
|
+
Fastlane::Rollbar.all_classes.each do |current|
|
17
17
|
require current
|
18
18
|
end
|
@@ -7,7 +7,7 @@ module Fastlane
|
|
7
7
|
module Actions
|
8
8
|
class RollbarProguardUploadAction < Action
|
9
9
|
def self.run(params)
|
10
|
-
Helper::
|
10
|
+
Helper::RollbarHelper.upload_proguard(
|
11
11
|
params[:api_key],
|
12
12
|
params[:proguard_path],
|
13
13
|
params[:code_version],
|
@@ -5,10 +5,10 @@ require_relative '../helper/rollbar_helper'
|
|
5
5
|
|
6
6
|
module Fastlane
|
7
7
|
module Actions
|
8
|
-
class
|
8
|
+
class RollbarAction < Action
|
9
9
|
def self.run(params)
|
10
|
-
Helper::
|
11
|
-
Helper::
|
10
|
+
Helper::RollbarHelper.create_bundle(os)
|
11
|
+
Helper::RollbarHelper.upload_bundle(
|
12
12
|
params[:api_key],
|
13
13
|
params[:os],
|
14
14
|
params[:code_version],
|
@@ -11,9 +11,9 @@ module Fastlane
|
|
11
11
|
API_DEPLOY_URL = "#{API_URL}/deploy".freeze
|
12
12
|
|
13
13
|
module Helper
|
14
|
-
class
|
14
|
+
class RollbarHelper
|
15
15
|
# class methods that you define here become available in your action
|
16
|
-
# as `Helper::
|
16
|
+
# as `Helper::RollbarHelper.your_method`
|
17
17
|
#
|
18
18
|
def self.create_bundle(os)
|
19
19
|
UI.message('Creating React Native bundle')
|
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
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evgrafov Denis
|
@@ -144,13 +144,13 @@ extra_rdoc_files: []
|
|
144
144
|
files:
|
145
145
|
- LICENSE
|
146
146
|
- README.md
|
147
|
+
- lib/fastlane/plugin/rollbar.rb
|
147
148
|
- lib/fastlane/plugin/rollbar/actions/rollbar_dsym_upload_action.rb
|
148
149
|
- lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb
|
149
150
|
- lib/fastlane/plugin/rollbar/actions/rollbar_report_deploy_action.rb
|
150
151
|
- lib/fastlane/plugin/rollbar/actions/rollbar_sourcemaps_upload_action.rb
|
151
152
|
- lib/fastlane/plugin/rollbar/helper/rollbar_helper.rb
|
152
153
|
- lib/fastlane/plugin/rollbar/version.rb
|
153
|
-
- lib/fastlane/plugin/rollbar_sourcemaps_upload.rb
|
154
154
|
homepage: https://github.com/stereodenis/fastlane-plugin-rollbar
|
155
155
|
licenses:
|
156
156
|
- MIT
|