Module: Perkins::ThorUtils
Class Method Summary collapse
Instance Method Summary collapse
- #base_location ⇒ Object (also: #location)
- #create_directories(*dirs) ⇒ Object
- #create_new_file(name, file = nil) ⇒ Object
- #create_with_template(name, template_location, contents = {}) ⇒ Object
- #error(msg) ⇒ Object
- #log(msg) ⇒ Object
- #remove_directories(*names) ⇒ Object
- #remove_files(*files) ⇒ Object
- #templates(path) ⇒ Object
- #touch(*filenames) ⇒ Object
- #underscore(string) ⇒ Object
Class Method Details
.source_root ⇒ Object
5 6 7 |
# File 'lib/perkins/thor_utils.rb', line 5 def self.source_root File.dirname(__FILE__) end |
Instance Method Details
#base_location ⇒ Object Also known as: location
63 64 65 |
# File 'lib/perkins/thor_utils.rb', line 63 def base_location @location ||= Pathname.new(Dir.pwd) end |
#create_directories(*dirs) ⇒ Object
31 32 33 34 35 36 |
# File 'lib/perkins/thor_utils.rb', line 31 def create_directories(*dirs) dirs.each do |dir| log "Creating the #{dir} directory." FileUtils.mkdir_p(location.join(dir)) end end |
#create_new_file(name, file = nil) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/perkins/thor_utils.rb', line 9 def create_new_file(name, file=nil) log "Creating #{name}" contents = file.nil? ? '' : File.read(file) unless File.file?(location.join(name)) File.open(location.join(name), 'w') { |f| f.write(contents) } end end |
#create_with_template(name, template_location, contents = {}) ⇒ Object
45 46 47 48 49 |
# File 'lib/perkins/thor_utils.rb', line 45 def create_with_template(name, template_location, contents={}) template = templates("#{template_location}.erb") eruby = Erubis::Eruby.new(File.read(template)) File.open(location.join(name.gsub(/^\//, '')), 'w') { |f| f.write(eruby.result(contents))} end |
#error(msg) ⇒ Object
59 60 61 |
# File 'lib/perkins/thor_utils.rb', line 59 def error(msg) ::Perkins::Logger.error(msg) end |
#log(msg) ⇒ Object
55 56 57 |
# File 'lib/perkins/thor_utils.rb', line 55 def log(msg) ::Perkins::Logger.report(msg) end |
#remove_directories(*names) ⇒ Object
38 39 40 41 42 43 |
# File 'lib/perkins/thor_utils.rb', line 38 def remove_directories(*names) names.each do |name| log "Removing #{name} directory." FileUtils.rm_rf(location.join(name)) end end |
#remove_files(*files) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/perkins/thor_utils.rb', line 17 def remove_files(*files) files.each do |file| log "Removing #{file} file." FileUtils.rm(location.join(file)) end end |
#templates(path) ⇒ Object
51 52 53 |
# File 'lib/perkins/thor_utils.rb', line 51 def templates(path) ::Perkins.root.join('pullentity-client/templates').join(path) end |
#touch(*filenames) ⇒ Object
24 25 26 27 28 29 |
# File 'lib/perkins/thor_utils.rb', line 24 def touch(*filenames) filenames.each do |filename| log "Creating #{filename} file." FileUtils.touch(location.join(filename)) end end |
#underscore(string) ⇒ Object
69 70 71 72 73 74 75 |
# File 'lib/perkins/thor_utils.rb', line 69 def underscore(string) string.gsub(/::/, '/'). gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2'). gsub(/([a-z\d])([A-Z])/,'\1_\2'). tr("-", "_"). downcase end |