Sha256: cdbcc999c69fbed9f482ec486088bea4e90778184bbee36c26e4e73e5dc04482
Contents?: true
Size: 494 Bytes
Versions: 10
Compression:
Stored size: 494 Bytes
Contents
# Contains details about the origin of the recipe. module Yummly class Source # The original source url of this recipe. attr_accessor :recipe_url # The url of the source site of this recipe. attr_accessor :site_url # The display name of the source site. attr_accessor :display_name def initialize(values) @recipe_url = values["sourceRecipeUrl"] @site_url = values["sourceSiteUrl"] @display_name= values["sourceDisplayName"] end end end
Version data entries
10 entries across 10 versions & 1 rubygems