1
0

relay.rb 604 B

123456789101112131415161718192021
  1. module Docs
  2. class Relay < React
  3. self.type = 'react'
  4. self.release = '0.10.0'
  5. self.base_url = 'https://facebook.github.io/relay/docs/'
  6. self.root_path = 'getting-started.html'
  7. self.links = {
  8. home: 'https://facebook.github.io/relay/',
  9. code: 'https://github.com/facebook/relay'
  10. }
  11. options[:root_title] = 'Relay Documentation'
  12. options[:only_patterns] = nil
  13. options[:skip] = %w(videos.html graphql-further-reading.html)
  14. options[:attribution] = <<-HTML
  15. &copy; 2013&ndash;2016 Facebook Inc.<br>
  16. Licensed under the BSD License.
  17. HTML
  18. end
  19. end