2011-01-01から1年間の記事一覧

Erubis 2.7.0 の rails_helper が Ruby1.9 系で動かない

--- lib/erubis/helpers/rails_form_helper.rb.org +++ lib/erubis/helpers/rails_form_helper.rb @@ -123,7 +123,7 @@ s = "" ## start tag s << "

Redmine の ガントチャートの PDF 出力に縦線を出してみた

--- lib/redmine/helpers/gantt.rb.org Mon Mar 07 20:41:58 2011 +++ lib/redmine/helpers/gantt.rb Thu Apr 07 18:24:09 2011 @@ -259,0 +260 @@ + vertical_line_pdf(options) @@ -261,0 +263,21 @@ + + def vertical_line_pdf(options) + left = options…

Nokogiri で xml2hash

実際に使ってみたら色々と残念な動作をしたので直した def xml2hash(doc) result = nil doc.children.each do |child| if child.text? return {doc.name.to_sym => doc.content} elsif child.cdata? return {doc.name.to_sym => doc.child.content} elsif ch…