mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 21:37:36 -04:00
21 lines
796 B
Ruby
21 lines
796 B
Ruby
# coding: utf-8
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "just-the-docs"
|
|
spec.version = "0.1.2"
|
|
spec.authors = ["Patrick Marsceill"]
|
|
spec.email = ["patrick.marsceill@gmail.com"]
|
|
|
|
spec.summary = %q{A nice looking, high customizable, responsive Jekyll theme for documention with built-in search.}
|
|
spec.homepage = "https://github.com/pmarsceill/just-the-docs"
|
|
spec.license = "MIT"
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|bin|_layouts|_includes|lib|Rakefile|_sass|LICENSE|README)}i) }
|
|
spec.executables << 'just-the-docs'
|
|
|
|
spec.add_runtime_dependency "jekyll", "~> 3.3"
|
|
|
|
spec.add_development_dependency "bundler", "~> 1.12"
|
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
end
|