Class: Erector::Erect

Inherits:
Object show all
Defined in:
lib/erector/erect.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ Erect

Returns a new instance of Erect.



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
50
51
52
# File 'lib/erector/erect.rb', line 8

def initialize(args)
  @verbose = true
  @mode = :to_erector
  @output_dir = nil
  
  opts = OptionParser.new do |opts|
    opts.banner = "Usage: erect [options] [file|dir]*"

    opts.separator "Converts from html/rhtml files to erector widgets, or from erector widgets to html files"
    opts.separator ""
    opts.separator "Options:"

    opts.on("-q", "--quiet",
            "Operate silently except in case of error") do |quiet|
      @verbose = !quiet
    end
    
    opts.on("--to-erector", "(default) Convert from html/rhtml to erector classes") do
      @mode = :to_erector
    end

    opts.on("--to-html", "Convert from erector to html") do
      @mode = :to_html
    end
    
    opts.on("-o", "--output-dir DIRECTORY", "Output files to DIRECTORY (default: output files go next to input files)") do |dir|
      @output_dir = dir
    end

    opts.on_tail("-h", "--help", "Show this message") do
      @mode = :help
      puts opts
      exit
    end

    opts.on_tail("-v", "--version", "Show version") do
      puts Erector::VERSION
      exit
    end
    
  end
  opts.parse!(args)
  @files = args
  explode_dirs
end

Instance Attribute Details

#filesObject (readonly)

Returns the value of attribute files.



7
8
9
# File 'lib/erector/erect.rb', line 7

def files
  @files
end

#modeObject (readonly)

Returns the value of attribute mode.



7
8
9
# File 'lib/erector/erect.rb', line 7

def mode
  @mode
end

#output_dirObject (readonly)

Returns the value of attribute output_dir.



7
8
9
# File 'lib/erector/erect.rb', line 7

def output_dir
  @output_dir
end

#verboseObject (readonly)

Returns the value of attribute verbose.



7
8
9
# File 'lib/erector/erect.rb', line 7

def verbose
  @verbose
end

Instance Method Details

#camelize(lower_case_and_underscored_word, first_letter_in_uppercase = true) ⇒ Object

stolen from activesuppport/lib/inflector.rb



132
133
134
135
136
137
138
# File 'lib/erector/erect.rb', line 132

def camelize(lower_case_and_underscored_word, first_letter_in_uppercase = true)
  if first_letter_in_uppercase
    lower_case_and_underscored_word.to_s.gsub(/\/(.?)/) { "::" + $1.upcase }.gsub(/(^|_)(.)/) { $2.upcase }
  else
    lower_case_and_underscored_word.first + camelize(lower_case_and_underscored_word)[1..-1]
  end
end

#constantize(camel_cased_word) ⇒ Object



139
140
141
142
143
144
# File 'lib/erector/erect.rb', line 139

def constantize(camel_cased_word)
  unless /\A(?:::)?([A-Z]\w*(?:::[A-Z]\w*)*)\z/ =~ camel_cased_word
    raise NameError, "#{camel_cased_word.inspect} is not a valid constant name!"
  end
  Object.module_eval("::#{$1}", __FILE__, __LINE__)
end

#explode(dir) ⇒ Object



71
72
73
74
75
76
77
78
# File 'lib/erector/erect.rb', line 71

def explode(dir)
  case mode
  when :to_erector
    FileList["#{dir}/**/*.rhtml", "#{dir}/**/*.html", "#{dir}/**/*.html.erb"]
  when :to_html
    FileList["#{dir}/**/*.rb"]
  end
end

#explode_dirsObject

todo: unit test



59
60
61
62
63
64
65
66
67
68
69
# File 'lib/erector/erect.rb', line 59

def explode_dirs
  exploded_files = FileList.new
  files.each do |file|
    if File.directory?(file)
      exploded_files.add(explode(file))
    else
      exploded_files.add(file)
    end
  end
  @files = exploded_files
end

#runObject



80
81
82
# File 'lib/erector/erect.rb', line 80

def run
  self.send(mode)
end

#say(msg) ⇒ Object



54
55
56
# File 'lib/erector/erect.rb', line 54

def say(msg)
  print msg if verbose
end

#to_erectorObject



84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/erector/erect.rb', line 84

def to_erector
  files.each do |file|
    say "Erecting #{file}... "
    begin
      e = Erector::Erected.new(file)
      e.convert
      say " --> #{e.filename}\n"
    rescue => e
      puts e
      puts e.backtrace.join("\n\t")
      puts
    end
  end
end

#to_htmlObject



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/erector/erect.rb', line 99

def to_html
  files.each do |file|
    say "Erecting #{file}... "
    #todo: move this into Erected with better tests for the naming methods
    begin
      #todo: fail if file isn't a .rb file
      require file
      #todo: understand modulized widgets (e.g. class Foo::Bar::Baz < Erector::Widget in baz.rb)
      filename = file.split('/').last.gsub(/\.rb$/, '')
      widget_name = camelize(filename)
      widget_class = constantize(widget_name)
      
      if widget_class < Erector::Widget
        widget = widget_class.new
        #todo: skip if it's missing a no-arg constructor
        dir = output_dir || File.dirname(file)
        FileUtils.mkdir_p(dir)
        output_file = "#{dir}/#{filename}.html"
        File.open(output_file, "w") do |f|
          f.puts widget.to_s
        end
        say " --> #{output_file}\n"
      else
        say " -- not a widget, skipping\n"
      end
    rescue => e
      puts e
      puts e.backtrace.join("\n\t")
    end
  end
end