jquery_ui.rb 414 B

123456789101112131415
  1. module Docs
  2. class JqueryUi < Jquery
  3. self.name = 'jQuery UI'
  4. self.slug = 'jqueryui'
  5. self.release = '1.10.4'
  6. self.base_url = 'http://local.api.jqueryui.com'
  7. self.root_path = '/category/all'
  8. html_filters.insert_before 'jquery/clean_html', 'jquery_ui/entries'
  9. options[:root_title] = 'jQuery UI'
  10. options[:skip] = %w(/theming)
  11. options[:skip_patterns].concat [/\A\/1\./]
  12. end
  13. end