Monica Olinescu
Monica Olinescu
OS: Windows 10 Pro N, Version 1709, Build 16299.309 IE: Version 11.309 Edge: Version 41.16299 The error message reads: "No compatible source found for this media" - MEDIA_ERR_SRC_NOT_SUPPORTED Please let...
Using v1.6.0. ``` ruby require 'representable/json/hash' module SongRepresenter include Representable::JSON::Hash property :title, as: :name property :track end song = {"title" => "Fallout", "track" => 1} song.extend(SongRepresenter).to_json # => {"title":"Fallout","track":1} #...
My app has two different kinds of backbone collections that are connected to pusher (People and Documents). They each use their own pusher channels, so I placed the code that...