Sha256: fdfa5b3e3a17e34f04e4df454e96571f18734dda95c9512800fc822c952d09c3

Contents?: true

Size: 490 Bytes

Versions: 3

Compression:

Stored size: 490 Bytes

Contents

module WhatsOnNetflix
    class LeavingSoon < List
       @@all = []
        
        def self.all
            @@all
        end
        
        def self.list_url
            "http://www.whats-on-netflix.com/leaving-soon/titles-leaving-netflix-in-#{self.current_month}-#{self.current_year}/"
        end
        
        def self.list
            puts "= = = = ="
            puts "Leaving Soon from Netflix"
            puts "= = = = ="
            self.print_list
        end
    end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
whats-on-netflix-0.1.3 lib/whats_on_netflix/leaving_soon.rb
whats-on-netflix-0.1.2 lib/whats_on_netflix/leaving_soon.rb
whats-on-netflix-0.1.1 lib/whats_on_netflix/leaving_soon.rb