Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
perlun authored and temochka committed Jan 9, 2019
1 parent a502eb7 commit 57aab62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postmark.gemspec
Expand Up @@ -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

0 comments on commit 57aab62

Please sign in to comment.