Module: Daddy::Formatter::DaddyHtml

Included in:
Html
Defined in:
lib/daddy/formatter/daddy_html.rb

Instance Method Summary collapse

Instance Method Details

#after_menuObject



23
24
25
26
27
28
# File 'lib/daddy/formatter/daddy_html.rb', line 23

def after_menu
  if ENV['PUBLISH']
    @builder << '</div>'
    @builder << '</div>'
  end
end

#before_menuObject



11
12
13
14
15
16
17
18
19
20
21
# File 'lib/daddy/formatter/daddy_html.rb', line 11

def before_menu
  if ENV['PUBLISH']
    @builder << "<div>"

    @builder.div(:id => 'menu') do
        @builder << make_menu_for_publish
    end

    @builder << "<div class='contents'>"
  end
end

#feature_dir(feature, short = false) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/daddy/formatter/daddy_html.rb', line 41

def feature_dir(feature, short = false)
  ret = ''
  
  split = feature.file.split(File::SEPARATOR)
  split.reverse[1..-2].each_with_index do |dir, i|
    break if dir == '仕様書' or dir == '開発日記'

    if i == 0
      if short
        ret = dir.split('.').first + '.'
      else
        ret = dir
      end
    else
      ret = dir.split('.').first + '.' + ret
    end
  end

  ret
end

#feature_idObject



37
38
39
# File 'lib/daddy/formatter/daddy_html.rb', line 37

def feature_id
  @feature.file.gsub(/(\/|\.|\\)/, '_')
end

#magic_comment?(comment_line) ⇒ Boolean

Returns:

  • (Boolean)


66
67
68
69
70
71
72
73
74
# File 'lib/daddy/formatter/daddy_html.rb', line 66

def magic_comment?(comment_line)
  comment = comment_line.to_s

  ['language', 'format'].each do |magic|
    return true if /#\s*#{magic}\s*:.*/ =~ comment
  end
  
  false
end

#make_menu_for_publishObject



30
31
32
33
34
35
# File 'lib/daddy/formatter/daddy_html.rb', line 30

def make_menu_for_publish
  FileUtils.mkdir_p('tmp')
  menu = File.join('tmp', 'menu.html')
  system("erb -T - #{File.dirname(__FILE__)}/menu.html.erb > #{menu}")
  File.read(menu)
end

#should_expandObject



62
63
64
# File 'lib/daddy/formatter/daddy_html.rb', line 62

def should_expand
  ['t', 'true'].include?(ENV['EXPAND'].to_s.downcase)
end

#titleObject



7
8
9
# File 'lib/daddy/formatter/daddy_html.rb', line 7

def title
  ENV['TITLE'] || 'Daddy'
end