mirror of
https://github.com/thangisme/notes.git
synced 2024-11-03 01:17:37 -04:00
2b0ff701fa
Updates the requirements on [bundler](https://github.com/bundler/bundler) to permit the latest version. - [Release notes](https://github.com/bundler/bundler/releases) - [Changelog](https://github.com/bundler/bundler/blob/v2.0.1/CHANGELOG.md) - [Commits](https://github.com/bundler/bundler/commits/v2.0.1) Signed-off-by: dependabot[bot] <support@dependabot.com>
21 lines
797 B
Ruby
21 lines
797 B
Ruby
# coding: utf-8
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "just-the-docs"
|
|
spec.version = "0.2.1"
|
|
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.8.5"
|
|
spec.add_runtime_dependency "rake", "~> 12.3.1"
|
|
|
|
spec.add_development_dependency "bundler", "~> 2.0.1"
|
|
end
|