Class: ConvenientService::Dependencies::Queries::Version::NullVersion Private

Inherits:
Object
  • Object
show all
Defined in:
lib/convenient_service/dependencies/queries/version/null_version.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#<(other) ⇒ nil

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • other (Object)

    Can be any type.

Returns:

  • (nil)


41
42
43
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 41

def <(other)
  nil
end

#<=(other) ⇒ nil

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • other (Object)

    Can be any type.

Returns:

  • (nil)


49
50
51
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 49

def <=(other)
  nil
end

#<=>(other) ⇒ nil

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • other (Object)

    Can be any type.

Returns:

  • (nil)


33
34
35
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 33

def <=>(other)
  nil
end

#==(other) ⇒ nil

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • other (Object)

    Can be any type.

Returns:

  • (nil)


57
58
59
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 57

def ==(other)
  nil
end

#>(other) ⇒ nil

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • other (Object)

    Can be any type.

Returns:

  • (nil)


65
66
67
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 65

def >(other)
  nil
end

#>=(other) ⇒ nil

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • other (Object)

    Can be any type.

Returns:

  • (nil)


73
74
75
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 73

def >=(other)
  nil
end

#gem_versionnil

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (nil)


25
26
27
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 25

def gem_version
  nil
end

#null_version?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


18
19
20
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 18

def null_version?
  true
end

#to_sString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (String)


80
81
82
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 80

def to_s
  ""
end