Sha256: 4beea31405af3c554e60febb05ef9027172ff805a8a612eef6157090c6a4e36f

Contents?: true

Size: 340 Bytes

Versions: 22

Compression:

Stored size: 340 Bytes

Contents

class Specinfra::Command::Debian::Base::Port < Specinfra::Command::Linux::Base::Port
  class << self
    def create(os_info=nil)
      release = (os_info || os)[:release]
      if ["testing", "unstable"].include?(release) || release.to_i >= 8
        Specinfra::Command::Debian::V8::Port
      else
        self
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
specinfra-2.82.25 lib/specinfra/command/debian/base/port.rb
specinfra-2.82.24 lib/specinfra/command/debian/base/port.rb