Sha256: 405ff5265fc8856793e8e7d2f4410d820b28c7fcbd64ddf53153a6d060b15cf7

Contents?: true

Size: 505 Bytes

Versions: 3

Compression:

Stored size: 505 Bytes

Contents

require 'pry'

module WhatsOnNetflix
    class ComingSoon < List
        
        @@all = []
        
        def self.all
            @@all
        end
        
        def self.list_url
            "http://www.whats-on-netflix.com/coming-soon/#{self.current_month}-#{self.current_year}-new-netflix-releases/"
        end
        
        def self.list
            puts "= = = = ="
            puts "Coming Soon on 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/coming_soon.rb
whats-on-netflix-0.1.2 lib/whats_on_netflix/coming_soon.rb
whats-on-netflix-0.1.1 lib/whats_on_netflix/coming_soon.rb