Class: ConvenientService::Support::Version::NullVersion Private
- Inherits:
-
Object
- Object
- ConvenientService::Support::Version::NullVersion
- Defined in:
- lib/convenient_service/support/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
- #<(other) ⇒ nil private
- #<=(other) ⇒ nil private
- #<=>(other) ⇒ nil private
- #==(other) ⇒ nil private
- #>(other) ⇒ nil private
- #>=(other) ⇒ nil private
- #gem_version ⇒ nil private
- #null_version? ⇒ Boolean private
- #to_s ⇒ String private
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.
40 41 42 |
# File 'lib/convenient_service/support/version/null_version.rb', line 40 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.
48 49 50 |
# File 'lib/convenient_service/support/version/null_version.rb', line 48 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.
32 33 34 |
# File 'lib/convenient_service/support/version/null_version.rb', line 32 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.
56 57 58 |
# File 'lib/convenient_service/support/version/null_version.rb', line 56 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.
64 65 66 |
# File 'lib/convenient_service/support/version/null_version.rb', line 64 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.
72 73 74 |
# File 'lib/convenient_service/support/version/null_version.rb', line 72 def >=(other) nil end |
#gem_version ⇒ 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.
24 25 26 |
# File 'lib/convenient_service/support/version/null_version.rb', line 24 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.
17 18 19 |
# File 'lib/convenient_service/support/version/null_version.rb', line 17 def null_version? true end |
#to_s ⇒ String
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.
79 80 81 |
# File 'lib/convenient_service/support/version/null_version.rb', line 79 def to_s "" end |