Skip to content

Commit fc7b867

Browse files
authored
Merge pull request Idean#113 from milch/patch-1
Lowercase "fastlane"
2 parents a404d5f + 6bc75f7 commit fc7b867

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ In SonarQube under Quality Profiles the used Linter can be specified by selectin
4242
Checkout the [Releases](https://github.com/Backelite/sonar-swift/releases) page.
4343

4444
### Launching an analysis
45-
If you use [Fastlane](https://fastlane.tools), please read [our Fastlane integration doc](docs/sonarqube-fastlane.md).
45+
If you use [fastlane](https://fastlane.tools), please read [our fastlane integration doc](docs/sonarqube-fastlane.md).
4646
Otherwise, run the ```run-sonar-swift.sh``` script from your Xcode project root folder
4747

4848
### Release history
@@ -66,7 +66,7 @@ Otherwise, run the ```run-sonar-swift.sh``` script from your Xcode project root
6666
#### 0.3.2
6767
- SwiftLint 0.16.1 (75 rules now).
6868
- Fixed [Metric 'test_data' should not be computed by a Sensor](https://github.com/Backelite/sonar-swift/issues/61) with SonarQube 6.2
69-
- Fastlane documentation update by [mammuth](https://github.com/mammuth). See [PR 62](https://github.com/Backelite/sonar-swift/pull/62)
69+
- fastlane documentation update by [mammuth](https://github.com/mammuth). See [PR 62](https://github.com/Backelite/sonar-swift/pull/62)
7070
- run-sonar-swift.sh fix by [TheSkwiggs](https://github.com/mammuth). See [PR 64](https://github.com/Backelite/sonar-swift/pull/64)
7171

7272
#### 0.3.1
@@ -82,8 +82,8 @@ Otherwise, run the ```run-sonar-swift.sh``` script from your Xcode project root
8282

8383
#### 0.2.4
8484
- Analysis does not fail anymore when an unkwown issue is reported by SwiftLint. See [issue 35](https://github.com/Backelite/sonar-swift/issues/35)
85-
- Fastlane documentation (thanks to [viteinfinite](https://github.com/viteinfinite)). See [PR 33](https://github.com/Backelite/sonar-swift/pull/33)
86-
- Fixed Fastlane JUnit report support
85+
- fastlane documentation (thanks to [viteinfinite](https://github.com/viteinfinite)). See [PR 33](https://github.com/Backelite/sonar-swift/pull/33)
86+
- Fixed fastlane JUnit report support
8787
- SwiftLint 0.11.1 support
8888
- Better return code suppot for run-sonar-swift.sh
8989

docs/sonarqube-fastlane.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Using with Fastlane 🚀
1+
# Using with fastlane 🚀
22

3-
If you already use Fastlane, you can simply setup a new lane performing the analysis as follows:
3+
If you already use fastlane, you can simply setup a new lane performing the analysis as follows:
44

55
```ruby
66
lane :metrics do
@@ -15,15 +15,15 @@ end
1515

1616
## Options
1717

18-
Fastlane's `sonar` action allows you to define or override a number of SonarQube properties, such as `sonar.project-version`.
18+
fastlane's `sonar` action allows you to define or override a number of SonarQube properties, such as `sonar.project-version`.
1919

2020
For instance:
2121

2222
```ruby
2323
sonar(project_version: "1.0b")
2424
```
2525

26-
You can read the complete documentation of Fastlane's `sonar` action on your terminal via:
26+
You can read the complete documentation of fastlane's `sonar` action on your terminal via:
2727

2828
```bash
2929
fastlane action sonar

sonar-swift-plugin/src/main/java/org/sonar/plugins/swift/surefire/SwiftSurefireParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private File[] getReports(File dir) {
7979

8080
return dir.listFiles(new FilenameFilter() {
8181
public boolean accept(File dir, String name) {
82-
// .junit is for Fastlane support
82+
// .junit is for fastlane support
8383
return (name.startsWith("TEST") && name.endsWith(".xml")) || (name.endsWith(".junit"));
8484
}
8585
});

0 commit comments

Comments
 (0)