| 12345678910111213141516171819202122232425262728293031 |
- module Docs
- class Symfony < UrlScraper
- self.name = 'Symfony'
- self.slug = 'symfony'
- self.type = 'laravel'
- self.version = '2.7'
- self.base_url = "http://api.symfony.com/#{version}/"
- self.root_path = 'namespaces.html'
- self.initial_paths = %w(classes.html)
- self.links = {
- home: 'http://symfony.com/',
- code: 'https://github.com/symfony/symfony'
- }
- html_filters.push 'symfony/entries', 'symfony/clean_html'
- options[:skip] = %w(
- panel.html
- namespaces.html
- interfaces.html
- traits.html
- doc-index.html
- search.html
- Symfony.html)
- options[:attribution] = <<-HTML
- © 2004–2015 Fabien Potencier<br>
- Licensed under the MIT License.
- HTML
- end
- end
|