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.
22 lines
631 B
22 lines
631 B
module Docs
|
|
class Bash < UrlScraper
|
|
self.type = 'bash'
|
|
self.release = '4.4'
|
|
self.base_url = 'https://www.gnu.org/software/bash/manual'
|
|
self.root_path = '/html_node/index.html'
|
|
self.links = {
|
|
home: 'https://www.gnu.org/software/bash/',
|
|
code: 'http://git.savannah.gnu.org/cgit/bash.git'
|
|
}
|
|
|
|
html_filters.push 'bash/entries', 'bash/clean_html'
|
|
|
|
options[:only_patterns] = [/\/html_node\//]
|
|
|
|
options[:attribution] = <<-HTML
|
|
Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.<br>
|
|
Licensed under the GNU Free Documentation License.
|
|
HTML
|
|
end
|
|
end
|