2011-06-28から1日間の記事一覧

ラクダ式とアンダースコア式の変換

$ rails c Loading development environment (Rails 3.0.1) irb(main):001:0> "hoge_foo".camelize => "HogeFoo" irb(main):002:0> "HogeFoo".underscore => "hoge_foo"tableize ってのもある。 あたり。 参考URL camelizeとunderscore | GENDOSU@NET

通貨のフォーマット

環境 Rails 3.0系 やり方 設定(config/locales/ja.yml) currency: format: format: "%n%u" unit: "円" separator: "." delimiter: "," precision: 0 significant: false strip_insignificant_zeros: falseprecision を 3 から 0 に変更します。 表示(erb…