voxpupuli / json-schema

Ruby JSON Schema Validator
MIT License
1.52k stars 242 forks source link

Remove ruby 1.9 from travis CI spec #349

Closed jlfaber closed 7 years ago

jlfaber commented 7 years ago

As of July 1, the latest version of the json gem (2.0.1) now requires ruby ~> 2.0. This is breaking CI testing on master. This PR removes the ruby 1.9 entry from the travis spec file.

iainbeeston commented 7 years ago

Sorry, but we do want to keep ruby 1.9 support. The correct solution to this (which I haven't had time to do yet) is to use a custom gemfile on the ruby 1.9 build which limits the json gem to versions less than 2.0 (which raised the minimum ruby version to 2.0)

iainbeeston commented 7 years ago

350 should resolve this issue.

jlfaber commented 7 years ago

Ah. Well done, then. Thanks.