Module: AttributeStruct::MonkeyCamels::Humps

Defined in:
lib/attribute_struct/monkey_camels.rb

Instance Method Summary collapse

Instance Method Details

#_bactrianself Also known as: bactrian!, no_leading_hump!

Set hump style to non-leading upcase

Returns:

  • (self)


83
84
85
86
87
# File 'lib/attribute_struct/monkey_camels.rb', line 83

def _bactrian
  @__not_camel = false
  @__hump_style = :no_leading_hump
  self
end

#_camel?TrueClass, FalseClass

Returns camelized.

Returns:

  • (TrueClass, FalseClass)

    camelized



47
48
49
50
51
52
53
# File 'lib/attribute_struct/monkey_camels.rb', line 47

def _camel?
  if defined?(@__not_camel)
    !@__not_camel
  else
    true
  end
end

#_dromedaryself Also known as: dromedary!, leading_hump!

Set hump style to leading upcase

Returns:

  • (self)


95
96
97
98
99
# File 'lib/attribute_struct/monkey_camels.rb', line 95

def _dromedary
  @__not_camel = false
  @__hump_style = :leading_hump
  self
end

#_humpself Also known as: camel!

Returns enable camelizing.

Returns:

  • (self)

    enable camelizing



64
65
66
67
# File 'lib/attribute_struct/monkey_camels.rb', line 64

def _hump
  @__not_camel = false
  self
end

#_hump_format_requested?TrueClass, FalseClass

Returns specific style requested.

Returns:

  • (TrueClass, FalseClass)

    specific style requested



38
39
40
41
42
43
44
# File 'lib/attribute_struct/monkey_camels.rb', line 38

def _hump_format_requested?
  if defined?(@__not_camel)
    @__not_camel != nil
  else
    false
  end
end

#_hump_styleSymbol, NilClass Also known as: hump_style!

Returns style of hump.

Returns:

  • (Symbol, NilClass)

    style of hump



72
73
74
75
76
# File 'lib/attribute_struct/monkey_camels.rb', line 72

def _hump_style
  if defined?(@__hump_style)
    @__hump_style
  end
end

#_no_humpself Also known as: disable_camel!

Returns disable camelizing.

Returns:

  • (self)

    disable camelizing



56
57
58
59
# File 'lib/attribute_struct/monkey_camels.rb', line 56

def _no_hump
  @__not_camel = true
  self
end