Module: RubyFly::ClassMethods
- Included in:
- RubyFly
- Defined in:
- lib/ruby_fly.rb
Instance Method Summary collapse
- #get_pipeline(opts = {}) ⇒ Object
- #set_pipeline(opts = {}) ⇒ Object
- #unpause_pipeline(opts = {}) ⇒ Object
- #version ⇒ Object
Instance Method Details
#get_pipeline(opts = {}) ⇒ Object
23 24 25 |
# File 'lib/ruby_fly.rb', line 23 def get_pipeline(opts = {}) Commands::GetPipeline.new.execute(opts) end |
#set_pipeline(opts = {}) ⇒ Object
27 28 29 |
# File 'lib/ruby_fly.rb', line 27 def set_pipeline(opts = {}) Commands::SetPipeline.new.execute(opts) end |
#unpause_pipeline(opts = {}) ⇒ Object
31 32 33 |
# File 'lib/ruby_fly.rb', line 31 def unpause_pipeline(opts = {}) Commands::UnpausePipeline.new.execute(opts) end |
#version ⇒ Object
35 36 37 |
# File 'lib/ruby_fly.rb', line 35 def version Commands::Version.new.execute end |