Sha256: a29539d81b206ce985fdb03f4f8e7f9b81f4c260a3fcdc695619bd449a45ec86

Contents?: true

Size: 511 Bytes

Versions: 9

Compression:

Stored size: 511 Bytes

Contents

# frozen_string_literal: true

require 'sgdisk'

module Getch
  module FileSystem
    module Ext4
      module Minimal
        class Partition
          def initialize
            x
          end

          private

          # Follow https://wiki.archlinux.org/index.php/Partitioning
          # 1 - /efi of GPT
          # 2 - Swap
          # 3 - /
          # 4 - /home if --separate-home DISK is used
          def x
            Sgdisk::Ext4.new(DEVS)
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
getch-0.11.0 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.7.3 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.7.0 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.5.0 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.3.6 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.3.5 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.3.4 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.3.3 lib/getch/filesystem/ext4/minimal/partition.rb
getch-0.3.0 lib/getch/filesystem/ext4/minimal/partition.rb