module VV::SymbolMethods

Public Class Methods

included(base) click to toggle source
# File lib/vv/symbol_methods.rb, line 4
def self.included(base)
  base.extend(ClassMethods)
end

Public Instance Methods

insta() click to toggle source
# File lib/vv/symbol_methods.rb, line 18
def insta
  self.to_s.insta
end
insta_sym() click to toggle source
# File lib/vv/symbol_methods.rb, line 22
def insta_sym
  self.to_s.insta_sym
end
plural?(*args, **kwargs) click to toggle source
# File lib/vv/symbol_methods.rb, line 34
def plural? *args, **kwargs
  self.to_s.plural?( *args, **kwargs )
end
setter() click to toggle source
# File lib/vv/symbol_methods.rb, line 26
def setter
  self.to_s.setter
end
setter_sym() click to toggle source
# File lib/vv/symbol_methods.rb, line 30
def setter_sym
  self.to_s.setter_sym
end
singular?(*args, **kwargs) click to toggle source
# File lib/vv/symbol_methods.rb, line 38
def singular? *args, **kwargs
  self.to_s.singular?( *args, **kwargs )
end
vv_json() click to toggle source
# File lib/vv/symbol_methods.rb, line 14
def vv_json
  self.to_s.vv_json
end