-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
384d5ed
commit 372138d
Showing
5 changed files
with
57 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
fastlane_version "1.99.0" | ||
REQUIRED_XCODE_VERSION = "7.3" | ||
default_platform :ios | ||
|
||
platform :ios do | ||
desc "Runs all the tests" | ||
lane :test do | ||
scan project: "WSLogger.xcodeproj" | ||
end | ||
|
||
desc "Increment the verion and build number" | ||
lane :version_bump_project do |options| | ||
build_number = Time.new.strftime("%Y.%m.%d.%H.%M") | ||
increment_build_number build_number: build_number | ||
increment_version_number bump_type: options[:bump_type] | ||
end | ||
|
||
desc "Prepare a new Release version" | ||
lane :release do |options| | ||
version_bump_project bump_type: options[:bump] | ||
version_bump_podspec bump_type: options[:bump] | ||
clean_build_artifacts | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
fastlane documentation | ||
================ | ||
# Installation | ||
``` | ||
sudo gem install fastlane | ||
``` | ||
# Available Actions | ||
## iOS | ||
### ios test | ||
``` | ||
fastlane ios test | ||
``` | ||
Runs all the tests | ||
### ios version_bump_project | ||
``` | ||
fastlane ios version_bump_project | ||
``` | ||
Increment the verion and build number | ||
### ios release | ||
``` | ||
fastlane ios release | ||
``` | ||
Prepare a new Release version | ||
|
||
---- | ||
|
||
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. | ||
More information about fastlane can be found on [https://fastlane.tools](https://fastlane.tools). | ||
The documentation of fastlane can be found on [GitHub](https://github.com/fastlane/fastlane/tree/master/fastlane). |