bigbertha
bigbertha copied to clipboard
Ruby implementation for Firebase
Results
1
bigbertha issues
Sort by
recently updated
recently updated
newest added
I just got caught by https://github.com/derailed/bigbertha/blob/master/lib/bigbertha/core_ext/string.rb#L9: ``` 1 class String 2 def to_val 3 if self =~ /\A[-+]?\d+$/ 4 Integer( self ) 5 elsif self =~ /\A[-+]?\d+\.\d+$/ 6 Float( self...