From b64368873c1be9e12b564734b01fc9a6af90d734 Mon Sep 17 00:00:00 2001 From: Patrick Marsceill Date: Wed, 24 Oct 2018 12:56:33 -0400 Subject: [PATCH] Make Rake a runtime dep --- just-the-docs.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/just-the-docs.gemspec b/just-the-docs.gemspec index 4e872dc..d2ebe70 100644 --- a/just-the-docs.gemspec +++ b/just-the-docs.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "just-the-docs" - spec.version = "0.1.3" + spec.version = "0.1.4" spec.authors = ["Patrick Marsceill"] spec.email = ["patrick.marsceill@gmail.com"] @@ -14,7 +14,7 @@ Gem::Specification.new do |spec| spec.executables << 'just-the-docs' spec.add_runtime_dependency "jekyll", "~> 3.3" + spec.add_runtime_dependency "rake", "~> 10.0" spec.add_development_dependency "bundler", "~> 1.12" - spec.add_development_dependency "rake", "~> 10.0" end