Skip to content

Commit

Permalink
Do not lock MINOR in runtime deps
Browse files Browse the repository at this point in the history
Semver means MINOR updates do not introduce backwards incompatibilities,
so we should not lock MINOR.
  • Loading branch information
glebm committed Mar 12, 2017
1 parent ca57d48 commit 26182c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onebox.gemspec
Expand Up @@ -20,9 +20,9 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency 'multi_json', '~> 1.11'
spec.add_runtime_dependency 'mustache'
spec.add_runtime_dependency 'nokogiri', '~> 1.7.0'
spec.add_runtime_dependency 'nokogiri', '~> 1.7'
spec.add_runtime_dependency 'moneta', '~> 1.0'
spec.add_runtime_dependency 'htmlentities', '~> 4.3.4'
spec.add_runtime_dependency 'htmlentities', '~> 4.3'
spec.add_runtime_dependency 'fast_blank', '>= 1.0.0'
spec.add_runtime_dependency 'sanitize'

Expand Down

0 comments on commit 26182c3

Please sign in to comment.