Sha256: fb49e0d35a8814447509cc48500b9593fc7fd81471beee4668d5ab1374d6cd33
Contents?: true
Size: 445 Bytes
Versions: 16
Compression:
Stored size: 445 Bytes
Contents
module Spider; module AppServer class App attr_reader :path attr_accessor :spec attr_reader :last_modified def initialize(path) @path = path end def method_missing(name, *args) @spec.send(name, *args) if @spec.respond_to?(name) end def to_json @spec.to_json end end end; end
Version data entries
16 entries across 16 versions & 1 rubygems