Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/github_downloader/string.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.colorize(text, color_code) ⇒ Object



2
3
4
# File 'lib/github_downloader/string.rb', line 2

def self.colorize(text, color_code)
  "\e[#{color_code}m#{text}\e[0m"
end

Instance Method Details

#blank?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/github_downloader/string.rb', line 34

def blank?
  self.nil? || self.empty?
end

#cyanObject



6
7
8
# File 'lib/github_downloader/string.rb', line 6

def cyan
  self.class.colorize(self, 36)
end

#greenObject



10
11
12
# File 'lib/github_downloader/string.rb', line 10

def green
  self.class.colorize(self, 32)
end

#redObject



18
19
20
# File 'lib/github_downloader/string.rb', line 18

def red
  self.class.colorize(self, 31)
end

#uncapitalizeObject



30
31
32
# File 'lib/github_downloader/string.rb', line 30

def uncapitalize
  self[0, 1].downcase + self[1..-1]
end

#underscoreObject



22
23
24
25
26
27
28
# File 'lib/github_downloader/string.rb', line 22

def underscore
  self.gsub(/::/, '/').
      gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
      gsub(/([a-z\d])([A-Z])/, '\1_\2').
      tr("-", "_").
      downcase
end

#yellowObject



14
15
16
# File 'lib/github_downloader/string.rb', line 14

def yellow
  self.class.colorize(self, 33)
end