-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathhelpers.rb
49 lines (47 loc) · 1.71 KB
/
helpers.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module ZendeskAPI
# @private
module Helpers
def self.present?(value)
![nil, false, "", " ", [], {}].include?(value)
end
# From https://github.com/rubyworks/facets/blob/master/lib/core/facets/string/modulize.rb
# Converts a string to module name representation.
#
# This is essentially #camelcase, but it also converts
# '/' to '::' which is useful for converting paths to
# namespaces.
#
# Examples
#
# "method_name".modulize #=> "MethodName"
# "method/name".modulize #=> "Method::Name"
#
# @param string [string] input, `module/class_name`
# @return [string] a string that can become a class, `Module::ClassName`
def self.modulize_string(string)
# gsub('__','/'). # why was this ever here?
string.gsub(/__(.?)/) { "::#{$1.upcase}" }.
gsub(/\/(.?)/) { "::#{$1.upcase}" }.
gsub(/(?:_+|-+)([a-z])/) { $1.upcase }.
gsub(/(\A|\s)([a-z])/) { $1 + $2.upcase }
end
# From https://github.com/rubyworks/facets/blob/master/lib/core/facets/string/snakecase.rb
# Underscore a string such that camelcase, dashes and spaces are
# replaced by underscores. This is the reverse of {#camelcase},
# albeit not an exact inverse.
#
# "SnakeCase".snakecase #=> "snake_case"
# "Snake-Case".snakecase #=> "snake_case"
# "Snake Case".snakecase #=> "snake_case"
# "Snake - Case".snakecase #=> "snake_case"
def self.snakecase_string(string)
# gsub(/::/, '/').
string.gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
gsub(/([a-z\d])([A-Z])/, '\1_\2').
tr('-', '_').
gsub(/\s/, '_').
gsub(/__+/, '_').
downcase
end
end
end