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)


46
47
48
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 46

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)


54
55
56
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 54

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)


38
39
40
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 38

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)


62
63
64
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 62

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)


70
71
72
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 70

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)


78
79
80
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 78

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)


30
31
32
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 30

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)


23
24
25
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 23

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)


85
86
87
# File 'lib/convenient_service/dependencies/queries/version/null_version.rb', line 85

def to_s
  ""
end