# File lib/fog/joyent/models/analytics/transformations.rb, line 9 def all data = service.describe_analytics.body['transformations'] load(data) end
Joyent returns an odd data structure like this: { ‘apache’ => {‘label’ => ‘Apache’}} where the key is the name of the module
# File lib/fog/joyent/models/analytics/transformations.rb, line 17 def new(attributes = {}) name, other_attributes = attributes super(other_attributes.merge('name' => name)) end