Skip to content

Instantly share code, notes, and snippets.

@vjt
Created March 14, 2010 21:23
Show Gist options
  • Save vjt/332249 to your computer and use it in GitHub Desktop.
Save vjt/332249 to your computer and use it in GitHub Desktop.
if RUBY_PLATFORM == 'java'
class Gem::Version # oddity
class << self
alias orig_correct? correct?
def correct?(version)
orig_correct? version.sub(/-?java$/, '')
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment