Class: Puppet::Util::Package::Version::Range::Gt Private
- Defined in:
- lib/puppet/util/package/version/range/gt.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
- #include?(version) ⇒ Boolean private
- #to_s ⇒ Object private
Methods inherited from Simple
Constructor Details
This class inherits a constructor from Puppet::Util::Package::Version::Range::Simple
Instance Method Details
#include?(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.
10 11 12 |
# File 'lib/puppet/util/package/version/range/gt.rb', line 10 def include?(version) version > @version end |
#to_s ⇒ Object
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.
7 8 9 |
# File 'lib/puppet/util/package/version/range/gt.rb', line 7 def to_s ">#{@version}" end |