Skip to content

Commit fc90b31

Browse files
committed
Rename module namespace for helper
1 parent a3660c8 commit fc90b31

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_send_app_size_metrics.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def self.run(params)
1212
end
1313

1414
# Build the payload base
15-
metrics_helper = Fastlane::WPMRT::AppSizeMetricsHelper.new(
15+
metrics_helper = Fastlane::Helper::AppSizeMetricsHelper.new(
1616
Platform: 'Android',
1717
'App Name': params[:app_name],
1818
'App Version': params[:app_version_name],

lib/fastlane/plugin/wpmreleasetoolkit/actions/ios/ios_send_app_size_metrics.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def self.run(params)
1313
end
1414

1515
# Build the payload base
16-
metrics_helper = Fastlane::WPMRT::AppSizeMetricsHelper.new(
16+
metrics_helper = Fastlane::Helper::AppSizeMetricsHelper.new(
1717
Platform: 'iOS',
1818
'App Name': params[:app_name],
1919
'App Version': params[:app_version],

lib/fastlane/plugin/wpmreleasetoolkit/helper/app_size_metrics_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'zlib'
44

55
module Fastlane
6-
module WPMRT
6+
module Helper
77
# A helper class to build an App Size Metrics payload and send it to a server (or write it to disk)
88
#
99
# The payload generated (and sent) by this helper conforms to the API for grouped metrics described in

spec/app_size_metrics_helper_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require_relative './spec_helper'
22

3-
describe Fastlane::WPMRT::AppSizeMetricsHelper do
3+
describe Fastlane::Helper::AppSizeMetricsHelper do
44
describe '#to_h' do
55
it 'generates the right payload from raw data' do
66
metrics_helper = described_class.new({

0 commit comments

Comments
 (0)