mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
455 B
18 lines
455 B
module Docs
|
|
class Sequel < UrlScraper
|
|
self.slug = 'sequel'
|
|
self.type = 'rdoc'
|
|
self.release = '4.41.0'
|
|
self.base_url = 'http://sequel.jeremyevans.net/rdoc/classes/'
|
|
self.root_path = 'Sequel.html'
|
|
|
|
|
|
html_filters.push 'sequel/clean_html', 'sequel/entries'
|
|
options[:container] = '#wrapper'
|
|
|
|
options[:attribution] = <<-HTML
|
|
Copyright © 2007-2008 Sharon Rosner Copyright © 2008-2016 Jeremy Evans
|
|
HTML
|
|
end
|
|
end
|