Skip to content

Commit 2efb89a

Browse files
committed
chore: fix compilation to pipe through bundle / ignore robocop
1 parent eb72481 commit 2efb89a

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ require:
55
AllCops:
66
TargetRubyVersion: 2.7
77
NewCops: enable
8+
SuggestExtensions: false
89
Include:
910
- "**/*.rb"
1011
- "**/*file"

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ gemspec
55
# Add development dependencies here
66
gem 'abbrev'
77
gem 'fastlane', '>= 2.225.0'
8+
gem 'mutex_m'
89
gem 'pry'
910
gem 'rake'
1011
gem 'rspec'

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ rename_android(
2525
)
2626
```
2727

28-
| Parameter | Description | Required | Default |
29-
|---|---|---|---|
30-
| `path` | Path to the Android project root | Yes | |
31-
| `package_name` | The current package name | Yes | |
32-
| `new_package_name` | The new package name | Yes | |
28+
| Parameter | Description | Required | Default |
29+
|--------------------|----------------------------------|----------|---------|
30+
| `path` | Path to the Android project root | Yes | |
31+
| `package_name` | The current package name | Yes | |
32+
| `new_package_name` | The new package name | Yes | |
3333

3434
### rename_android_app_name
3535

@@ -42,22 +42,22 @@ rename_android_app_name(
4242
)
4343
```
4444

45-
| Parameter | Description | Required | Default |
46-
|---|---|---|---|
47-
| `new_name` | The new display name for the app | No | |
48-
| `manifest` | Path to the AndroidManifest.xml file | No | `app/src/main/AndroidManifest.xml` |
45+
| Parameter | Description | Required | Default |
46+
|------------|--------------------------------------|----------|------------------------------------|
47+
| `new_name` | The new display name for the app | No | |
48+
| `manifest` | Path to the AndroidManifest.xml file | No | `app/src/main/AndroidManifest.xml` |
4949

5050
## Run tests for this plugin
5151

5252
To run both the tests, and code style validation, run
5353

5454
```
55-
rake
55+
bundle exec rake
5656
```
5757

5858
To automatically fix many of the styling issues, use
5959
```
60-
rubocop -a
60+
bundle exec rubocop -a
6161
```
6262

6363
## Issues and Feedback

0 commit comments

Comments
 (0)