fjsanpedro / vagrant-node

A Vagrant plugin to set a computer as a node in a client/server infraestructure
Other
33 stars 9 forks source link

rubyzip version conflict, vagrant 1.7.4 #3

Open mokrinsky opened 9 years ago

mokrinsky commented 9 years ago

Trying to install vagrant-node to vagrant 1.7.4, i've got following error:

Vagrant could not find compatible versions for gem "rubyzip":
  In Gemfile:
    vagrant (= 1.7.4) ruby depends on
      winrm-fs (~> 0.2.0) ruby depends on
        rubyzip (~> 1.1) ruby

    vagrant-node (= 1.1.3) ruby depends on
      rubyzip (< 1.0.0) ruby

Fixed it with manual gem build with following gemspec:

  spec.add_dependency "rubyzip", '>= 1.0.0'
  spec.add_dependency "zip-zip"

However, I'm not sure it's pretty correct way to fix such error.

Sorry for not sending pull request, not kinda friendly with github :)