RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: kyasu1
Nice post Ryan as always.
I noticed that if I want to set properties with multi-byte string key or key string with spaces, the following format did not work.
p.properties = {rating: "PG-13", runtime: 107}
I needed to write this like follows in my environment.
p.properties = {"Highest Rating" => "PG-13", "時間" => "107"}
Nice post Ryan as always.
I noticed that if I want to set properties with multi-byte string key or key string with spaces, the following format did not work.
p.properties = {rating: "PG-13", runtime: 107}
I needed to write this like follows in my environment.
p.properties = {"Highest Rating" => "PG-13", "時間" => "107"}