Skip to content

Commit 1e8eeb6

Browse files
committed
fix-fastlane-naming-for-loading-issue
1 parent 03507b3 commit 1e8eeb6

10 files changed

+16
-16
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# instabug-stores-upload plugin
1+
# instabug_stores_upload plugin
22

3-
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-instabug-stores-upload)
3+
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-instabug_stores_upload)
44

55
## Getting Started
66

7-
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-instabug-stores-upload`, add it to your project by running:
7+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-instabug_stores_upload`, add it to your project by running:
88

99
```bash
10-
fastlane add_plugin instabug-stores-upload
10+
fastlane add_plugin instabug_stores_upload
1111
```
1212

13-
## About instabug-stores-upload
13+
## About instabug_stores_upload
1414

1515
Wrapper plugin for uploading builds to App Store and Play Store with Instabug-specific metadata reporting. This plugin provides custom actions that wrap the standard Fastlane actions and automatically report build and upload events to Instabug systems for better observability and integration into internal pipelines.
1616

fastlane-plugin-instabug-stores-upload.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
33
require 'fastlane/plugin/instabug_stores_upload/version'
44

55
Gem::Specification.new do |spec|
6-
spec.name = 'fastlane-plugin-instabug-stores-upload'
6+
spec.name = 'fastlane-plugin-instabug_stores_upload'
77
spec.version = Fastlane::InstabugStoresUpload::VERSION
88
spec.author = 'Instabug'
99
spec.email = '[email protected]'

lib/fastlane/plugin/instabug_stores_upload/actions/instabug_stores_upload_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module Fastlane
55
module Actions
66
class InstabugStoresUploadAction < Action
77
def self.run(params)
8-
UI.message("The instabug-stores-upload plugin is working!")
8+
UI.message("The instabug_stores_upload plugin is working!")
99
end
1010

1111
def self.description

lib/fastlane/plugin/instabug_stores_upload/helper/instabug_stores_upload_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def self.make_api_request(branch_name:, status:, api_key:, step:, extras: {}, er
7373
request = Net::HTTP::Patch.new(uri.path)
7474
request['Content-Type'] = 'application/json'
7575
request['Authorization'] = "Bearer #{api_key}"
76-
request['User-Agent'] = "fastlane-plugin-instabug-stores-upload"
76+
request['User-Agent'] = "fastlane-plugin-instabug_stores_upload"
7777
request.body = payload.to_json
7878

7979
response = http.request(request)

spec/instabug_build_android_app_action_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
headers: {
4949
'Content-Type' => 'application/json',
5050
'Authorization' => 'Bearer test-api-key',
51-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
51+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
5252
}
5353
).once
5454

spec/instabug_build_ios_app_action_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
headers: {
4646
'Content-Type' => 'application/json',
4747
'Authorization' => 'Bearer test-api-key',
48-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
48+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
4949
}
5050
).once
5151

spec/instabug_stores_upload_action_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
describe Fastlane::Actions::InstabugStoresUploadAction do
22
describe '#run' do
33
it 'prints a message' do
4-
expect(Fastlane::UI).to receive(:message).with("The instabug-stores-upload plugin is working!")
4+
expect(Fastlane::UI).to receive(:message).with("The instabug_stores_upload plugin is working!")
55

66
Fastlane::Actions::InstabugStoresUploadAction.run(nil)
77
end

spec/instabug_stores_upload_helper_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
headers: {
126126
'Content-Type' => 'application/json',
127127
'Authorization' => 'Bearer test-key',
128-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
128+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
129129
}
130130
).once
131131
end

spec/instabug_upload_to_app_store_action_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
headers: {
4040
'Content-Type' => 'application/json',
4141
'Authorization' => 'Bearer test-api-key',
42-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
42+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
4343
}
4444
).once
4545

@@ -55,7 +55,7 @@
5555
headers: {
5656
'Content-Type' => 'application/json',
5757
'Authorization' => 'Bearer test-api-key',
58-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
58+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
5959
}
6060
).once
6161
end

spec/instabug_upload_to_play_store_action_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
headers: {
4141
'Content-Type' => 'application/json',
4242
'Authorization' => 'Bearer test-api-key',
43-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
43+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
4444
}
4545
).once
4646

@@ -56,7 +56,7 @@
5656
headers: {
5757
'Content-Type' => 'application/json',
5858
'Authorization' => 'Bearer test-api-key',
59-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
59+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
6060
}
6161
).once
6262
end

0 commit comments

Comments
 (0)