From a0200271d46e6f5ecbca8dc8ef12c6ed676467fb Mon Sep 17 00:00:00 2001 From: Mark Rickert Date: Sun, 16 Feb 2014 09:05:19 -0500 Subject: [PATCH] Add gemspec to Gemfile for gem template. Since spec.add_development_dependency "rake" is already in the gemspec template, we don't need it in the Gemfile and we should always defer to the gemspec for our dependencies except for advanced use cases. --- lib/motion/project/template/gem/files/Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/motion/project/template/gem/files/Gemfile b/lib/motion/project/template/gem/files/Gemfile index 764be634..2a45cd72 100644 --- a/lib/motion/project/template/gem/files/Gemfile +++ b/lib/motion/project/template/gem/files/Gemfile @@ -1,4 +1,4 @@ source 'https://rubygems.org' -gem 'rake' -# Add your dependencies here: +# Define all dependencies in your .gemspec file +gemspec