This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "test/unit" | |
class ArabicGenerator | |
TABLE = { | |
"I" => 1, | |
"V" => 5 | |
} | |
def convert(roman_number) | |
arabic_num = 0 | |
char = roman_number.split("") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rymanalo@Ryans-MacBook-Pro [12:05:47] [~/Dropbox/WDI/music_search] [master] | |
-> % heroku logs | |
2013-04-22T06:49:02.536780+00:00 app[web.1]: from /app/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:251:in `block in require' | |
2013-04-22T06:49:02.536914+00:00 app[web.1]: from /app/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:236:in `load_dependency' | |
2013-04-22T06:49:02.536992+00:00 app[web.1]: from /app/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:251:in `require' | |
2013-04-22T06:49:02.537067+00:00 app[web.1]: from /app/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:359:in `require_or_load' | |
2013-04-22T06:49:02.537231+00:00 app[web.1]: from /app/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:225:in `require_dependency' | |
2013-04-22T06:49:02.537380+00:00 app[web.1]: from /app/vendor/bundle/ruby/1.9.1/gems/railties-3.2. |