Method: ElasticDot::Command::Addons.list
- Defined in:
- lib/elasticdot/command/addons.rb
.list ⇒ Object
23 24 25 26 27 28 |
# File 'lib/elasticdot/command/addons.rb', line 23 def self.list addons = api.get '/addons' puts '=== available' addons.each { |a, i| puts a['name'] } end |