okkez/coveralls-lcov

Missing dependencies

Closed this issue · 1 comments

Hi,

I'm trying to use your gem, hopefully it's gonna work better than cpp-coveralls (which doesn't work at all for me)!

I've found two small issues so far:

  1. You gem depends on "json" but the gemspec doesn't require it.
  2. I ran into this errror, runner.rb seems to be missing a require "net/https":
/var/lib/gems/1.8/gems/coveralls-lcov-1.0.0/lib/coveralls/lcov/runner.rb:71:in `post': undefined method `use_ssl=' for #<Net::HTTP coveralls.io:443 open=false> (NoMethodError)

Thanks!

You gem depends on "json" but the gemspec doesn't require it.

I don't support Ruby 1.8 because it has already reached EOL.
Ruby 1.9.1 or later has json as standard library.
But I think you can use this gem with Ruby 1.8 at your own risk.
Please arrange your Gemfile.

I ran into this errror, runner.rb seems to be missing a require "net/https":

I fixed this.
Thank you for reporting issues!!