Sha256: 64c936f441d7d4e5d5012829e1825acab274c345415be0d44e4f79f58666af32

Contents?: true

Size: 318 Bytes

Versions: 5

Compression:

Stored size: 318 Bytes

Contents

# encoding: utf-8

module TTY
  class Terminal
    # Initialize a Terminal
    #
    # @api public
    def initialize(options = {})
      @home = Home.new
    end

    # Find user home directory
    #
    # @return [String]
    #
    # @api public
    def home
      @home.find_home
    end
  end # Terminal
end # TTY

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tty-0.5.0 lib/tty/terminal.rb
tty-0.4.0 lib/tty/terminal.rb
tty-0.3.2 lib/tty/terminal.rb
tty-0.3.1 lib/tty/terminal.rb
tty-0.3.0 lib/tty/terminal.rb