Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / logstash   deb

Repository URL to install this package:

/ opt / logstash / vendor / bundle / jruby / 1.9 / gems / extlib-0.9.16 / lib / extlib / virtual_file.rb

require "stringio"

# To use as a parameter to Merb::Template.inline_template
class VirtualFile < StringIO
  attr_accessor :path
  def initialize(string, path)
    super(string)
    @path = path
  end
end