From 937c23772139b0011bba8d32290e128a8b5e2565 Mon Sep 17 00:00:00 2001 From: Patrick Marsceill Date: Sun, 4 Jun 2017 17:54:54 -0400 Subject: [PATCH] Add rakefile --- Rakefile | 1 + just-the-docs.gemspec | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Rakefile diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..b8b42c4 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +Dir.glob('lib/tasks/*.rake').each {|r| import r} diff --git a/just-the-docs.gemspec b/just-the-docs.gemspec index 6c8b3be..85a8c5c 100644 --- a/just-the-docs.gemspec +++ b/just-the-docs.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |spec| 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|lib|_layouts|_includes|_sass|LICENSE|README)}i) } + spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|bin|lib|_layouts|_includes|_sass|LICENSE|README|Rakefile)}i) } spec.add_runtime_dependency "jekyll", "~> 3.3"