We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looks like lib/statsd/graphite.rb has a dependency on 1.9.2 that isn't particularly necessary at line 86:
puts "complete. (#{time.round(3)}s)"
Causes the problem:
Uncaught exception wrong number of arguments (1 for 0) /usr/lib/ruby/gems/1.8/gems/statsd-0.5.4/lib/statsd/graphite.rb:86:in `round'
Due to passing an argument to round which it seems that 1.8.7 version doesn't have.
I see that noahhl forked and changed that to
puts "complete. (#{(time*100).round()/100.0}s)"
Thanks!
The text was updated successfully, but these errors were encountered:
Fixes quasor#2, alters usage of round() to support Ruby 1.8.
49d1225
Merge pull request lookout#2 from Oscil8/master
c5518a3
Fix Gemfile, prefix handling
No branches or pull requests
Looks like lib/statsd/graphite.rb has a dependency on 1.9.2 that isn't particularly necessary at line 86:
Causes the problem:
Due to passing an argument to round which it seems that 1.8.7 version doesn't have.
I see that noahhl forked and changed that to
Thanks!
The text was updated successfully, but these errors were encountered: