class TableauServerClient::Resources::Resource::Attribute

Public Instance Methods

camelCase() click to toggle source
# File lib/tableau_server_client/resources/resource.rb, line 89
def camelCase
 atr = self.split("_").map{ |w| w.capitalize }.join
 atr[0] = atr[0].downcase
 atr
end