Module: RubyFly::ClassMethods
- Included in:
- RubyFly
- Defined in:
- lib/ruby_fly.rb
Instance Method Summary collapse
- #destroy_pipeline(opts = {}) ⇒ Object
- #get_pipeline(opts = {}) ⇒ Object
- #login(opts = {}) ⇒ Object
- #set_pipeline(opts = {}) ⇒ Object
- #status(opts = {}) ⇒ Object
- #unpause_pipeline(opts = {}) ⇒ Object
- #version ⇒ Object
Instance Method Details
#destroy_pipeline(opts = {}) ⇒ Object
45 46 47 |
# File 'lib/ruby_fly.rb', line 45 def destroy_pipeline(opts = {}) Commands::DestroyPipeline.new.execute(opts) end |
#get_pipeline(opts = {}) ⇒ Object
33 34 35 |
# File 'lib/ruby_fly.rb', line 33 def get_pipeline(opts = {}) Commands::GetPipeline.new.execute(opts) end |
#login(opts = {}) ⇒ Object
25 26 27 |
# File 'lib/ruby_fly.rb', line 25 def login(opts = {}) Commands::Login.new.execute(opts) end |
#set_pipeline(opts = {}) ⇒ Object
37 38 39 |
# File 'lib/ruby_fly.rb', line 37 def set_pipeline(opts = {}) Commands::SetPipeline.new.execute(opts) end |
#status(opts = {}) ⇒ Object
29 30 31 |
# File 'lib/ruby_fly.rb', line 29 def status(opts = {}) Commands::Status.new.execute(opts) end |
#unpause_pipeline(opts = {}) ⇒ Object
41 42 43 |
# File 'lib/ruby_fly.rb', line 41 def unpause_pipeline(opts = {}) Commands::UnpausePipeline.new.execute(opts) end |
#version ⇒ Object
49 50 51 |
# File 'lib/ruby_fly.rb', line 49 def version Commands::Version.new.execute end |