module PhoneGap::Build::Creatable

Public Class Methods

included(base) click to toggle source
# File lib/phone_gap/build/creatable.rb, line 8
def self.included(base)
  base.extend(ClassMethods)
end

Public Instance Methods

creatable_attributes() click to toggle source
# File lib/phone_gap/build/creatable.rb, line 12
def creatable_attributes
  self.class.class_variable_get('@@creatable_attributes')[self.class]
end
updatable_attributes() click to toggle source
# File lib/phone_gap/build/creatable.rb, line 16
def updatable_attributes
  self.class.class_variable_get('@@updatable_attributes')[self.class]
end