mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
21 lines
603 B
Ruby
21 lines
603 B
Ruby
module Docs
|
|
class Relay < React
|
|
self.type = 'react'
|
|
self.release = '0.9.0'
|
|
self.base_url = 'https://facebook.github.io/relay/docs/'
|
|
self.root_path = 'getting-started.html'
|
|
self.links = {
|
|
home: 'https://facebook.github.io/relay/',
|
|
code: 'https://github.com/facebook/relay'
|
|
}
|
|
|
|
options[:root_title] = 'Relay Documentation'
|
|
options[:only_patterns] = nil
|
|
options[:skip] = %w(videos.html graphql-further-reading.html)
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2013–2016 Facebook Inc.<br>
|
|
Licensed under the BSD License.
|
|
HTML
|
|
end
|
|
end
|