module RubyFly::ClassMethods

Public Instance Methods

destroy_pipeline(opts = {}) click to toggle source
# File lib/ruby_fly.rb, line 43
def destroy_pipeline(opts = {})
  Commands::DestroyPipeline.new.execute(opts)
end
get_pipeline(opts = {}) click to toggle source
# File lib/ruby_fly.rb, line 31
def get_pipeline(opts = {})
  Commands::GetPipeline.new.execute(opts)
end
login(opts = {}) click to toggle source
# File lib/ruby_fly.rb, line 23
def login(opts = {})
  Commands::Login.new.execute(opts)
end
set_pipeline(opts = {}) click to toggle source
# File lib/ruby_fly.rb, line 35
def set_pipeline(opts = {})
  Commands::SetPipeline.new.execute(opts)
end
status(opts = {}) click to toggle source
# File lib/ruby_fly.rb, line 27
def status(opts = {})
  Commands::Status.new.execute(opts)
end
unpause_pipeline(opts = {}) click to toggle source
# File lib/ruby_fly.rb, line 39
def unpause_pipeline(opts = {})
  Commands::UnpausePipeline.new.execute(opts)
end
version() click to toggle source
# File lib/ruby_fly.rb, line 47
def version
  Commands::Version.new.execute
end