Class FileType::Gem
In: lib/file_type.rb
Parent: Generic

Methods

Public Instance methods

[Source]

# File lib/file_type.rb, line 273
    def install ( install_dir=nil )
      cmd = gem('install', path)
      cmd << '--install-dir' << install_dir unless install_dir.nil?
      cmd.run(runner)
    end

[Source]

# File lib/file_type.rb, line 269
    def installable?
      true
    end

[Validate]