nerdEd / gtfs

Ruby lib for dealing with GTFS
http://www.edschmalzle.com
MIT License
61 stars 40 forks source link

cannot load such file -- zip/zip #48

Closed eis-ioki closed 11 months ago

eis-ioki commented 11 months ago

When simply adding gtfs to my gemfile I can't launch my app due to this error:

`require': cannot load such file -- zip/zip (LoadError)
/gems/gtfs-0.2.1/lib/gtfs/source.rb:3

It appears the gtfs gem depends on a very old rubyzip implementation. I made it work by adding zip-zip to my dependencies, but it should either be documented or maybe updated the source.rb to use zip only...

eis-ioki commented 11 months ago

I noticed, that this was because I was using gem 'gtfs' to add this gem. But in order to use this fork I had to use:

gem 'gtfs', github: 'nerdEd/gtfs', branch: 'master'