Skip to content

Commit

Permalink
Added gem versions to avoid conflicts with older version of the depen…
Browse files Browse the repository at this point in the history
…dencies
  • Loading branch information
sauron committed Sep 1, 2014
1 parent 3b79712 commit 8ac9045
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Gemfile.lock
Expand Up @@ -2,12 +2,12 @@ PATH
remote: .
specs:
planet (0.5.4)
box
feedjira
gli
mustache
sanitize
stringex
box (~> 0.1, >= 0.1.1)
feedjira (~> 1.3, >= 1.3.1)
gli (~> 2.12, >= 2.12.0)
mustache (~> 0.99, >= 0.99.6)
sanitize (~> 3.0, >= 3.0.0)
stringex (~> 2.5, >= 2.5.2)

GEM
remote: http://rubygems.org/
Expand Down
17 changes: 10 additions & 7 deletions planet.gemspec
Expand Up @@ -8,16 +8,19 @@ spec = Gem::Specification.new do |s|
s.homepage = 'http://github.com/pote/planet.rb'
s.licenses = ['MIT']
s.platform = Gem::Platform::RUBY
s.summary = 'An rss/atom feed aggregator designed to work with Octopress/Jekyll'
s.summary = 'Feed aggregator for Octopress/Jekyll'
s.description = <<-EOF
A feed aggregator implementation intended to be used with Octopress/Jekyll
EOF
s.files = Dir['bin/*'] + Dir['lib/**/*.rb']
s.require_paths << 'lib'
s.has_rdoc = false
s.bindir = 'bin'
s.executables << 'planet'
s.add_runtime_dependency('gli')
s.add_runtime_dependency('feedjira')
s.add_runtime_dependency('mustache')
s.add_runtime_dependency('box')
s.add_runtime_dependency("stringex")
s.add_runtime_dependency('sanitize')
s.add_runtime_dependency 'gli', '~> 2.12', '>= 2.12.0'
s.add_runtime_dependency 'feedjira', '~> 1.3', '>= 1.3.1'
s.add_runtime_dependency 'mustache', '~> 0.99', '>= 0.99.6'
s.add_runtime_dependency 'box', '~> 0.1', '>= 0.1.1'
s.add_runtime_dependency 'stringex', '~> 2.5', '>= 2.5.2'
s.add_runtime_dependency 'sanitize', '~> 3.0', '>= 3.0.0'
end

0 comments on commit 8ac9045

Please sign in to comment.