module FastCI

Constants

VERSION

Public Class Methods

await() click to toggle source
# File lib/fast_ci.rb, line 27
def await
  ws.await
end
configuration() click to toggle source
# File lib/fast_ci.rb, line 15
def configuration
  @configuration ||= FastCI::Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/fast_ci.rb, line 19
def configure
  yield(configuration)
end
debug(msg) click to toggle source
# File lib/fast_ci.rb, line 31
def debug(msg)
  puts "\n\e[36mDEBUG: \e[0m #{msg}\n" if ENV["FAST_CI_DEBUG"]
end
ws() click to toggle source
# File lib/fast_ci.rb, line 23
def ws
  @ws ||= WebSocket.new
end