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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eee0e50bcdd4fe5a1c6bc3f60db4a688a1c9fc984a1015322a84414e8e26701e
4
- data.tar.gz: e83d8c50e306970486eb0daa891801f15797a182a4eaf80e6b79b6275f68bd93
3
+ metadata.gz: 246e795301ee29bf5f9598cdf07f122766c7af58b86a5c7529f92da5d9e14498
4
+ data.tar.gz: b8a6d08ac6c3d3902ca6ce28b8960112f62ef5c9b2d6eca8eccb618cfe66d873
5
5
  SHA512:
6
- metadata.gz: 549c6906212fcc03056d9c3c0256689bf3c58f917b8ca44d7089223912a69b5a0f2ce34a67a4650b7259fac57ec22c23c60ab0636aa10a851001a2ab1e9fe0b2
7
- data.tar.gz: c95c4a8ec4775093a6379d5eb35576418b6a1b048df9d5ae9252e8d0261b2e8cc7b42acab080606fb63ed6f53b3d82bd1c89af5cffbb9145d78d859dafe5cec4
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::RollbarSourcemapsUpload.all_classes.each do |current|
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 RollbarDsymUploadAction < Action
9
9
  def self.run(params)
10
- Helper::RollbarSourcemapsUploadHelper.upload_dsym(
10
+ Helper::RollbarHelper.upload_dsym(
11
11
  params[:api_key],
12
12
  params[:dsym_path],
13
13
  params[:code_version],
@@ -7,7 +7,7 @@ module Fastlane
7
7
  module Actions
8
8
  class RollbarProguardUploadAction < Action
9
9
  def self.run(params)
10
- Helper::RollbarSourcemapsUploadHelper.upload_proguard(
10
+ Helper::RollbarHelper.upload_proguard(
11
11
  params[:api_key],
12
12
  params[:proguard_path],
13
13
  params[:code_version],
@@ -7,7 +7,7 @@ module Fastlane
7
7
  module Actions
8
8
  class RollbarReportDeployAction < Action
9
9
  def self.run(params)
10
- Helper::RollbarSourcemapsUploadHelper.report_deploy(
10
+ Helper::RollbarHelper.report_deploy(
11
11
  params[:api_key],
12
12
  params[:environment],
13
13
  params[:revision],
@@ -5,10 +5,10 @@ require_relative '../helper/rollbar_helper'
5
5
 
6
6
  module Fastlane
7
7
  module Actions
8
- class RollbarSourcemapsUploadAction < Action
8
+ class RollbarAction < Action
9
9
  def self.run(params)
10
- Helper::RollbarSourcemapsUploadHelper.create_bundle(os)
11
- Helper::RollbarSourcemapsUploadHelper.upload_bundle(
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 RollbarSourcemapsUploadHelper
14
+ class RollbarHelper
15
15
  # class methods that you define here become available in your action
16
- # as `Helper::RollbarSourcemapsUploadHelper.your_method`
16
+ # as `Helper::RollbarHelper.your_method`
17
17
  #
18
18
  def self.create_bundle(os)
19
19
  UI.message('Creating React Native bundle')
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fastlane
4
4
  module Rollbar
5
- VERSION = '0.1.3'.freeze
5
+ VERSION = '0.1.4'.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.3
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