git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@9401
e93f8b46-1217-0410-a6f0-
8f06a7374b81
# 2:30 => 2.5
s.gsub!(%r{^(\d+):(\d+)$}) { $1.to_i + $2.to_i / 60.0 }
# 2h30, 2h, 30m => 2.5, 2, 0.5
- s.gsub!(%r{^((\d+)\s*(h|hours?))?\s*((\d+)\s*(m|min)?)?$}) { |m| ($1 || $4) ? ($2.to_i + $5.to_i / 60.0) : m[0] }
+ s.gsub!(%r{^((\d+)\s*(h|hours?))?\s*((\d+)\s*(m|min)?)?$}i) { |m| ($1 || $4) ? ($2.to_i + $5.to_i / 60.0) : m[0] }
end
# 2,5 => 2.5
s.gsub!(',', '.')
"3 h 15 m" => 3.25,
"3 hours" => 3.0,
"12min" => 0.2,
+ "12 Min" => 0.2,
}
assertions.each do |k, v|