From 57aab626994660c93e195efe03cc2c48e0d7b4d9 Mon Sep 17 00:00:00 2001 From: Per Lundberg Date: Mon, 18 Jun 2018 09:04:46 +0300 Subject: [PATCH] gemspec: Move rake to development dependencies `rake` is not really a runtime dependency. The way it was previously phrased meant that all projects using this gem would include Rake as a _runtime_ dependency also, which increased their footprint unecessarily. This PR moves it to development dependencies, which is where such gems are normally located. `bundle install` in this repo will still give you `rake`, but `bundle install` in dependers will not necessarily do so. --- postmark.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postmark.gemspec b/postmark.gemspec index 97baea5..e92bc41 100644 --- a/postmark.gemspec +++ b/postmark.gemspec @@ -33,8 +33,8 @@ Gem::Specification.new do |s| s.required_rubygems_version = ">= 1.3.7" - s.add_dependency "rake" s.add_dependency "json" s.add_development_dependency "mail" + s.add_development_dependency "rake" end