Sha256: 6285e6787022b3a7d664a3523dadd5b96ee43849ed76ba604179e07f26016cbb

Contents?: true

Size: 1.1 KB

Versions: 12

Compression:

Stored size: 1.1 KB

Contents

class App

  def self.running
    @running ? true : false
  end

  def self.port
    ENV['PORT'] || 5000
  end

  def self.ws_port
    ENV['WS_PORT'] || 9000
  end

  def self.websocketio_url
    "ws://localhost:#{ws_port}"
  end

  def self.pid_file
    ENV['PID_FILE'] || "/tmp/sinatra-websocketio-testapp.pid"
  end

  def self.app_dir
    File.expand_path 'app', File.dirname(__FILE__)
  end

  def self.pid
    return unless @running
    File.open(pid_file) do |f|
      pid = f.gets.strip.to_i
      return pid if pid > 0
    end
    return
  end

  def self.start
    return if @running
    File.delete pid_file if File.exists? pid_file
    Thread.new do
      IO::popen "cd #{app_dir} && PID_FILE=#{pid_file} WS_PORT=#{ws_port} rackup config.ru -p #{port} > /dev/null 2>&1"
    end
    @running = true
    100.times do
      if File.exists? pid_file
        sleep 1
        return true
      end
      sleep 0.1
    end
    @running = false
    return false
  end

  def self.stop
    return unless @running
    system "kill #{pid}"
    File.delete pid_file if File.exists? pid_file
    @running = false
  end

end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
sinatra-websocketio-0.4.0 test/app.rb
sinatra-websocketio-0.3.9 test/app.rb
sinatra-websocketio-0.3.7 test/app.rb
sinatra-websocketio-0.3.6 test/app.rb
sinatra-websocketio-0.3.5 test/app.rb
sinatra-websocketio-0.3.4 test/app.rb
sinatra-websocketio-0.3.3 test/app.rb
sinatra-websocketio-0.3.2 test/app.rb
sinatra-websocketio-0.3.1 test/app.rb
sinatra-websocketio-0.3.0 test/app.rb
sinatra-websocketio-0.2.9 test/app.rb
sinatra-websocketio-0.2.8 test/app.rb