23 lines
379 B
Ruby
23 lines
379 B
Ruby
|
module Gitlab
|
||
|
module Template
|
||
|
class Gitignore < BaseTemplate
|
||
|
class << self
|
||
|
def extension
|
||
|
'.gitignore'
|
||
|
end
|
||
|
|
||
|
def categories
|
||
|
{
|
||
|
"Languages" => '',
|
||
|
"Global" => 'Global'
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def base_dir
|
||
|
Rails.root.join('vendor/gitignore')
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|