Skip to content

Commit efff726

Browse files
committed
fix-fastlane-naming-for-loading-issue
1 parent 2b6414d commit efff726

7 files changed

+13
-13
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.
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
@@ -50,7 +50,7 @@ def self.make_api_request(branch_name:, status:, api_key:, step:)
5050
request = Net::HTTP::Patch.new(uri.path)
5151
request['Content-Type'] = 'application/json'
5252
request['Authorization'] = "Bearer #{api_key}"
53-
request['User-Agent'] = "fastlane-plugin-instabug-stores-upload"
53+
request['User-Agent'] = "fastlane-plugin-instabug_stores_upload"
5454
request.body = payload.to_json
5555

5656
response = http.request(request)

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_upload_to_app_store_action_spec.rb

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

@@ -51,7 +51,7 @@
5151
headers: {
5252
'Content-Type' => 'application/json',
5353
'Authorization' => 'Bearer test-api-key',
54-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
54+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
5555
}
5656
).once
5757
end

spec/instabug_upload_to_play_store_action_spec.rb

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

@@ -52,7 +52,7 @@
5252
headers: {
5353
'Content-Type' => 'application/json',
5454
'Authorization' => 'Bearer test-api-key',
55-
'User-Agent' => 'fastlane-plugin-instabug-stores-upload'
55+
'User-Agent' => 'fastlane-plugin-instabug_stores_upload'
5656
}
5757
).once
5858
end

0 commit comments

Comments
 (0)