Sha256: 5e715e3e072a7af33c215d67456037d0078f83cde67b651e2b17c703e80d8b2e
Contents?: true
Size: 459 Bytes
Versions: 32
Compression:
Stored size: 459 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(options=nil) @spec.to_json end end end; end
Version data entries
32 entries across 32 versions & 1 rubygems