class Cany::UnsupportedVersion
This exception is raised if the running Cany
version satisfies not the required Cany
version constraint from the canspec.
Public Class Methods
new(required_version)
click to toggle source
Calls superclass method
# File lib/cany/errors.rb, line 57 def initialize(required_version) super "The package specification requires Cany in version" \ " \"#{required_version}\" but Cany has version \"#{Cany::VERSION}\"" end