octopress / genesis-theme

A Jekyll theme build on Octopress Ink
MIT License
24 stars 16 forks source link

It takes an eternity to resolve dependencies #48

Closed pama closed 6 years ago

pama commented 8 years ago

I'm trying to bundle the following Gemfile:

gem 'jekyll'

group :jekyll_plugins do
  gem 'octopress', '~> 3.0'
  gem 'octopress-genesis-theme'
end
tigefa4u commented 8 years ago

try this

gem 'jekyll'

group :jekyll_plugins do
  gem 'octopress'
  gem 'octopress-genesis-theme'
end

remove , '~> 3.0' :+1:

pama commented 8 years ago

Same problem @tigefa4u ; latest version is 3.0.1 so it won't make a difference.

bronislav commented 8 years ago

@pama it's because gemspec doesn't specify versions and bundler found more than one way to resolve dependencies, I believe.