Sha256: 7b96b2c49afabb693343ed846a410be2767ff2248a449922b9eb12dd65e5fc3f
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
require 'drb' require 'cucumba/railz/klass' module Cucumba # This class represents you rails application # You get it when through # # Cucumba[:main] # for instance class Railz class ServerNotFound < Exception end attr_reader :host, :port, :drb_port, :description, :environment def initialize(config) @host = config[:host] @port = config[:port] || 80 @drb_port = @port+1000 @run = config[:run] @description = config[:desc] @environment = config[:env] if config[:path] @path = File.join(config[:path]) else @path = File.join('.') end @path = File.expand_path(@path) @pid_file = File.join(@path,'tmp/pids/server.pid') @server = DRbObject.new(nil, drb_url) end # url where rails application lives def url 'http://'+@host+':'+@port.to_s end def drb_url 'druby://'+@host+':'+@drb_port.to_s end #-- # TODO move to routes #++ def rails_root @path end def run? @run end def class(class_name) Klass.new(class_name,@server) end alias :c :class def execute(code) @server.execute(code) end alias :e :execute end end DRb.start_service
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cucumba-0.0.6 | lib/cucumba/railz.rb |