Skip to content

Commit

Permalink
Merge pull request #959 from Coeur/https
Browse files Browse the repository at this point in the history
using https
  • Loading branch information
jpsim authored Apr 27, 2018
2 parents bb25a07 + 219895f commit deb0f3a
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@
[#310](https://github.com/realm/jazzy/pull/310)

* Render special list items (e.g. Throws, See, etc.). See
http://ericasadun.com/2015/06/14/swift-header-documentation-in-xcode-7/ for
https://ericasadun.com/2015/06/14/swift-header-documentation-in-xcode-7/ for
a complete list.
[JP Simard](https://github.com/jpsim)
[#317](https://github.com/realm/jazzy/issues/317)
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ all available options, run `jazzy --help config`.
### Supported keywords

Swift documentation is written in markdown and supports a number of special keywords.
For a complete list and examples, see Erica Sadun's post on [*Swift header documentation in Xcode 7*](http://ericasadun.com/2015/06/14/swift-header-documentation-in-xcode-7/),
For a complete list and examples, see Erica Sadun's post on [*Swift header documentation in Xcode 7*](https://ericasadun.com/2015/06/14/swift-header-documentation-in-xcode-7/),
her [book on Swift Documentation Markup](https://itunes.apple.com/us/book/swift-documentation-markup/id1049010423), and the [Xcode Markup Formatting Reference](https://developer.apple.com/library/content/documentation/Xcode/Reference/xcode_markup_formatting_ref/).

For Objective-C documentation the same keywords are supported, but note that the format
Expand Down Expand Up @@ -186,7 +186,7 @@ Unlike the `--documentation` option, these files are not included in navigation

This is very helpful when using `custom_categories` for grouping types and including relevant documentation in those sections.

For an example of a project using both `--documentation` and `--abstract` see: [http://reswift.github.io/ReSwift/](http://reswift.github.io/ReSwift/)
For an example of a project using both `--documentation` and `--abstract` see: [https://reswift.github.io/ReSwift/](https://reswift.github.io/ReSwift/)

### Controlling what is documented

Expand Down Expand Up @@ -273,10 +273,10 @@ See [our other open source projects](https://github.com/realm),
read [our blog](https://realm.io/news) or say hi on twitter
([@realm](https://twitter.com/realm)).

[clang]: http://clang.llvm.org "Clang"
[sourcekit]: http://www.jpsim.com/uncovering-sourcekit "Uncovering SourceKit"
[ast]: http://clang.llvm.org/docs/IntroductionToTheClangAST.html "Introduction To The Clang AST"
[clang]: https://clang.llvm.org "Clang"
[sourcekit]: https://www.jpsim.com/uncovering-sourcekit "Uncovering SourceKit"
[ast]: https://clang.llvm.org/docs/IntroductionToTheClangAST.html "Introduction To The Clang AST"
[xcode]: https://developer.apple.com/xcode "Xcode"
[SourceKitten]: https://github.com/jpsim/SourceKitten "SourceKitten"
[bundler]: http://rubygems.org/gems/bundler
[mustache]: http://mustache.github.io "Mustache"
[bundler]: https://rubygems.org/gems/bundler
[mustache]: https://mustache.github.io "Mustache"
2 changes: 1 addition & 1 deletion jazzy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.description = 'Soulful docs for Swift & Objective-C. ' \
"Run in your Xcode project's root directory for " \
'instant HTML docs.'
spec.homepage = 'http://github.com/realm/jazzy'
spec.homepage = 'https://github.com/realm/jazzy'
spec.license = 'MIT'

spec.files = `git ls-files`.split($/)
Expand Down
6 changes: 3 additions & 3 deletions lib/jazzy/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def expand_path(path)

config_attr :author_url,
command_line: ['-u', '--author_url URL'],
description: 'Author URL of this project (e.g. http://realm.io)',
description: 'Author URL of this project (e.g. https://realm.io)',
default: '',
parse: ->(u) { URI(u) }

Expand Down Expand Up @@ -252,7 +252,7 @@ def expand_path(path)
config_attr :dash_url,
command_line: ['-d', '--dash_url URL'],
description: 'Location of the dash XML feed '\
'e.g. http://realm.io/docsets/realm.xml)',
'e.g. https://realm.io/docsets/realm.xml)',
parse: ->(d) { URI(d) }

config_attr :github_url,
Expand Down Expand Up @@ -302,7 +302,7 @@ def expand_path(path)
description: ['Custom navigation categories to replace the standard '\
'“Classes, Protocols, etc.”', 'Types not explicitly named '\
'in a custom category appear in generic groups at the end.',
'Example: http://git.io/v4Bcp'],
'Example: https://git.io/v4Bcp'],
default: []

config_attr :custom_head,
Expand Down
2 changes: 1 addition & 1 deletion lib/jazzy/docset_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module Jazzy
module DocBuilder
# Follows the instructions found at http://kapeli.com/docsets#dashDocset.
# Follows the instructions found at https://kapeli.com/docsets#dashDocset.
class DocsetBuilder
include Config::Mixin

Expand Down
2 changes: 1 addition & 1 deletion lib/jazzy/themes/apple/templates/footer.mustache
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<section id="footer">
{{{copyright}}}
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v{{jazzy_version}}</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v{{jazzy_version}}</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
2 changes: 1 addition & 1 deletion lib/jazzy/themes/fullwidth/templates/footer.mustache
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<section class="footer">
{{{copyright}}}
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v{{jazzy_version}}</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v{{jazzy_version}}</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
2 changes: 1 addition & 1 deletion lib/jazzy/themes/jony/templates/footer.mustache
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<section id="footer">
{{{copyright}}}
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v{{jazzy_version}}</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v{{jazzy_version}}</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
2 changes: 1 addition & 1 deletion spec/integration_specs
Submodule integration_specs updated 544 files

0 comments on commit deb0f3a

Please sign in to comment.