Class: VagrantPhpstormTunnel::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-phpstorm-tunnel/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#command_prefixObject

Returns the value of attribute command_prefix.



4
5
6
# File 'lib/vagrant-phpstorm-tunnel/config.rb', line 4

def command_prefix
  @command_prefix
end

#project_homeObject

Returns the value of attribute project_home.



4
5
6
# File 'lib/vagrant-phpstorm-tunnel/config.rb', line 4

def project_home
  @project_home
end

Instance Method Details

#to_hashObject



14
15
16
17
18
19
# File 'lib/vagrant-phpstorm-tunnel/config.rb', line 14

def to_hash
  {
      :project_home => project_home,
      :command_prefix => command_prefix
  }
end