Skip to content

Commit

Permalink
Update URLs to new docs page (fastlane#10648)
Browse files Browse the repository at this point in the history
  • Loading branch information
KrauseFx authored and ohayon committed Oct 24, 2017
1 parent 5c196d3 commit 1928bc0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ This project is licensed under the terms of the MIT license. See the [LICENSE][l
[tools and debugging]: ToolsAndDebugging.md
[vision]: VISION.md
[responding to prs]: RespondingToIssuesAndPullRequests.md
[plugins]: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md#readme
[plugins]: https://docs.fastlane.tools/plugins/create-plugin/
[firstpr]: YourFirstPR.md
[submit action]: fastlane/docs/Plugins.md#submitting-the-action-to-the-fastlane-main-repo
[submit action]: https://docs.fastlane.tools/plugins/create-plugin/#submitting-the-action-to-the-fastlane-main-repo
4 changes: 2 additions & 2 deletions fastlane/docs/FAQs.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ bundle exec fastlane ...

This is usually caused when running Jenkins as its own user. While this is possible, you'll have to take care of creating a temporary Keychain, filling it and then using it when building your application.

For more information about the recommended setup with Jenkins open the [Jenkins Guide](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Jenkins.md).
For more information about the recommended setup with Jenkins open the [Jenkins Guide](https://docs.fastlane.tools/best-practices/continuous-integration/#jenkins-integration).

### Code signing issues

Check out the [codesigning.guide](https://codesigning.guide) website for more information on how to properly setup code-signing in your team using [match](https://github.com/fastlane/fastlane/tree/master/match).
Check out the [codesigning.guide](https://codesigning.guide) website for more information on how to properly setup code-signing in your team using [match](https://fastlane.tools/match).

### When should I use _cert_, _sigh_ and _match_?

Expand Down
2 changes: 1 addition & 1 deletion fastlane/lib/fastlane/plugins/plugin_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PluginManager
AUTOGENERATED_LINE = "# Autogenerated by fastlane\n#\n# Ensure this file is checked in to source control!\n\n"
GEMFILE_SOURCE_LINE = "source \"https://rubygems.org\"\n"
FASTLANE_PLUGIN_PREFIX = "fastlane-plugin-"
TROUBLESHOOTING_URL = "https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md"
TROUBLESHOOTING_URL = "https://docs.fastlane.tools/plugins/plugins-troubleshooting/"

#####################################################
# @!group Reading the files and their paths
Expand Down
2 changes: 1 addition & 1 deletion fastlane/spec/plugins_specs/plugin_manager_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ module Fastlane::Crashlytics
result = Fastlane::FastFile.new.parse("lane :test do
my_custom_plugin
end").runner.execute(:test)
end.to raise_exception("Plugin 'my_custom_plugin' was not properly loaded, make sure to follow the plugin docs for troubleshooting: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/PluginsTroubleshooting.md")
end.to raise_exception("Plugin 'my_custom_plugin' was not properly loaded, make sure to follow the plugin docs for troubleshooting: https://docs.fastlane.tools/plugins/plugins-troubleshooting/")
end

it "shows an appropriate error message when an action is not available, which is not a plugin" do
Expand Down
2 changes: 1 addition & 1 deletion spaceship/lib/spaceship/tunes/app_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def select_build(build)
# })
#
# Available Values
# https://github.com/fastlane/fastlane/blob/master/deliver/Reference.md
# https://docs.fastlane.tools/actions/deliver/#reference
def update_rating(hash)
raise "Must be a hash" unless hash.kind_of?(Hash)

Expand Down

0 comments on commit 1928bc0

Please sign in to comment.