Sha256: 6645d7c2222e38ef70b1dc04b6906571dcc8869d9fb08803a9734fb697bb82c8
Contents?: true
Size: 1.24 KB
Versions: 4
Compression:
Stored size: 1.24 KB
Contents
module Animoto module Styles ANIMOTO_ORIGINAL = "original" WATERCOLOR_SEASHORE = "mothers_day_2011" DUSK_RETREAT = "elegance_12" VINTAGE_VOYAGE = "vintage" COSMIC_TIDINGS = "cosmic_tidings" WONDERLAND_OF_SNOW = "wonderland_of_snow" THROUGH_THE_BLOSSOMS = "valentines_day_2012_hands" WATER = "elements_water" SIMPLICITY = "slideshow_1" AIR = "elements_air" FIRE = "elements_fire" EARTH = "elements_earth" COLOR_FOLD = "Cubist_style" COMING_UP_ROSES = "valentines_2011" WRAPPING_SCRAPS = "xmas-2010-style1" THE_WINDING_VINE = "mothers_day" POPUP_PANDEMONIUM = "holiday_popup_pandemonium" STARRY_NIGHT = "holiday_starry_night" RETRO_WHEEL = "viewmaster" DEPRECATED_NAMES = { :ORIGINAL => :ANIMOTO_ORIGINAL, :MOTHERS_DAY_2011 => :WATERCOLOR_SEASHORE, :ELEGANCE => :DUSK_RETREAT, :VINTAGE => :VINTAGE_VOYAGE } def self.const_missing old_name if new_name = DEPRECATED_NAMES[old_name] warn("The style name \"#{old_name.to_s}\" is deprecated. Use \"#{new_name}\" instead.") const_set(old_name, const_get(new_name)) else super end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
animoto-1.5.6 | ./lib/animoto/styles.rb |
animoto-1.5.5 | ./lib/animoto/styles.rb |
animoto-1.5.4 | ./lib/animoto/styles.rb |
animoto-1.5.3 | ./lib/animoto/styles.rb |