| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- module Docs
- class Phoenix < UrlScraper
- self.type = 'elixir'
- self.release = '1.5.6'
- self.base_url = 'https://hexdocs.pm/'
- self.root_path = 'phoenix/Phoenix.html'
- self.initial_paths = %w(
- phoenix/api-reference.html
- ecto/api-reference.html
- phoenix_html/api-reference.html
- phoenix_live_view/api-reference.html
- phoenix_pubsub/api-reference.html
- plug/api-reference.html)
- self.links = {
- home: 'http://www.phoenixframework.org',
- code: 'https://github.com/phoenixframework/phoenix'
- }
- html_filters.push 'elixir/clean_html', 'elixir/entries'
- options[:container] = '#content'
- options[:skip_patterns] = [/extra-api-reference/]
- options[:only_patterns] = [
- /\Aphoenix\//,
- /\Aecto\//,
- /\Aphoenix_pubsub\//,
- /\Aphoenix_html\//,
- /\Aphoenix_live_view\//,
- /\Aplug\//
- ]
- options[:attribution] = -> (filter) {
- if filter.slug.start_with?('ecto')
- <<-HTML
- © 2013 Plataformatec<br>
- © 2020 Dashbit<br>
- Licensed under the Apache License, Version 2.0.
- HTML
- elsif filter.slug.start_with?('plug')
- <<-HTML
- © 2013 Plataformatec<br>
- Licensed under the Apache License, Version 2.0.
- HTML
- elsif filter.slug.start_with?('phoenix_live_view')
- <<-HTML
- © 2018 Chris McCord<br>
- Licensed under the MIT License.
- HTML
- else
- <<-HTML
- © 2014 Chris McCord<br>
- Licensed under the MIT License.
- HTML
- end
- }
- def get_latest_version(opts)
- doc = fetch_doc('https://hexdocs.pm/phoenix/Phoenix.html', opts)
- doc.at_css('.sidebar-projectVersion').content.strip[1..-1]
- end
- end
- end
|