First, great job!
I was getting ActionView::Template::Error (couldn't parse YAML at line 5 column 8):
Fixed it by adding the following to my config/boot.rb file
require 'yaml'
YAML::ENGINE.yamler= 'syck'
Should I keep it my root application boot.rb or create a gems/system-metrics/config/boot.rb and it there?
First, great job!
I was getting ActionView::Template::Error (couldn't parse YAML at line 5 column 8):
Fixed it by adding the following to my config/boot.rb file
require 'yaml'
YAML::ENGINE.yamler= 'syck'
Should I keep it my root application boot.rb or create a gems/system-metrics/config/boot.rb and it there?