Sha256: 4397f4693f512061e17e3683e28e1be9fa356bbc2dffcec98f853d75e03095b2
Contents?: true
Size: 476 Bytes
Versions: 1
Compression:
Stored size: 476 Bytes
Contents
# Main module to start the program module PhotoFlick IMAGE_COUNT = 10 LAYOUT = { tile: '5x2', width: 228, height: 250 }.freeze FLICKR_KEY = 'ef0c85f3cae7a54faa33ae29f0e6addc'.freeze autoload :CollageMaker, 'photo_flick/collage_maker' autoload :FlickrImageFetcher, 'photo_flick/flickr_image_fetcher' autoload :Dictionary, 'photo_flick/dictionary' autoload :ImageProcessor, 'photo_flick/image_processor' def self.start CollageMaker.new.make! end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
photo_flick-0.1.0 | lib/photo_flick.rb |