Module: Coolstrap::Generator::Utils

Included in:
CLI, Generate::Project, Generate::View
Defined in:
lib/coolstrap-generator/utils.rb

Instance Method Summary collapse

Instance Method Details

#base_locationObject Also known as: location



67
68
69
# File 'lib/coolstrap-generator/utils.rb', line 67

def base_location
  @location ||= Pathname.new(Dir.pwd)
end

#create_directories(*dirs) ⇒ Object



33
34
35
36
37
38
# File 'lib/coolstrap-generator/utils.rb', line 33

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



4
5
6
7
8
9
10
# File 'lib/coolstrap-generator/utils.rb', line 4

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



48
49
50
51
52
# File 'lib/coolstrap-generator/utils.rb', line 48

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



63
64
65
# File 'lib/coolstrap-generator/utils.rb', line 63

def error(msg)
  ::Coolstrap::Generator::Logger.error(msg)
end

#get_app_nameObject



12
13
14
15
16
17
# File 'lib/coolstrap-generator/utils.rb', line 12

def get_app_name
  config  = File.open("tiapp.xml")
  doc     = ::Nokogiri::XML(config)
  config.close
  doc.xpath('ti:app/name').text
end

#log(msg) ⇒ Object



59
60
61
# File 'lib/coolstrap-generator/utils.rb', line 59

def log(msg)
  ::Coolstrap::Generator::Logger.report(msg)
end

#remove_directories(*names) ⇒ Object



40
41
42
43
44
45
# File 'lib/coolstrap-generator/utils.rb', line 40

def remove_directories(*names)
  names.each do |name|
    log "Removing #{name} directory."
    FileUtils.rm_rf(location.join(name))
  end
end

#remove_files(*files) ⇒ Object



19
20
21
22
23
24
# File 'lib/coolstrap-generator/utils.rb', line 19

def remove_files(*files)
  files.each do |file|
    log "Removing #{file} file."
    FileUtils.rm(location.join(file))
  end
end

#templates(path) ⇒ Object



54
55
56
# File 'lib/coolstrap-generator/utils.rb', line 54

def templates(path)
  ::Coolstrap::Generator.root.join('coolstrap-generator/templates').join(path)
end

#touch(*filenames) ⇒ Object



26
27
28
29
30
31
# File 'lib/coolstrap-generator/utils.rb', line 26

def touch(*filenames)
  filenames.each do |filename|
    log "Creating #{filename} file."
    FileUtils.touch(location.join(filename))
  end
end

#underscore(string) ⇒ Object



73
74
75
76
77
78
79
# File 'lib/coolstrap-generator/utils.rb', line 73

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