rubyworks / smeagol

Read-Only Gollum Server
http://rubyworks.github.com/smeagol
Other
92 stars 5 forks source link

Some bundler file ignores #32

Closed fnichol closed 12 years ago

fnichol commented 13 years ago

Hi Ben,

Just a minor pull request to remove Gemfile.lock and an old .bundle/config entry in the repo. It helped me get the tests passing.

Cheers and thanks for Smeagol!

trans commented 13 years ago

I can't seem to install smeagol:

ERROR:  While executing gem ... (Gem::DependencyError)
    Unable to resolve dependencies: smeagol requires rack (~> 1.2.0)

Would this fix?

fnichol commented 13 years ago

Are you installing it via gem install smeagol? The gemspec file sets dependency constraints for a gem whereas a Gemfile.lock would be used if you were developing in the project. ~> 1.2.0 means that this gem requires rack version 1.2.0 up to (but not including) 1.3.0. You can try to run gem list rack to see if there are any other versions installed on your system.

trans commented 13 years ago

Yes, the gem. I installed rack 1.2.0 and got it to work, but I imagine that smeagol can use rack 1.3+ just fine and the gemspec should be updated.