plexus / yaks

Ruby library for building hypermedia APIs
http://rubygems.org/gems/yaks
MIT License
236 stars 26 forks source link

Ruby version info + gemspec clean-up #79

Closed chastell closed 9 years ago

chastell commented 9 years ago

Yaks require Ruby 1.9.3, so let’s mention that in gemspecs.

The RUBY_VERSION > '1.9' guard clauses seem wrong: they either do mean what they do (‘1.9.0 is enough’), in which case they’re extraneous, or they are supposed to mean 2.0+, in which case they should be RUBY_VERSION > '2.0'. Mutant works with Ruby 1.9.3, so I just dropped them.

Also sorted the dependencies as a little Sunday guilty pleasure.

plexus commented 9 years ago

Thank you!

thankyou