Method: Worldfootball::Page.from_file

Defined in:
lib/worldfootball/page.rb

.from_file(path) ⇒ Object



5
6
7
8
# File 'lib/worldfootball/page.rb', line 5

def self.from_file( path )
  html = File.open( path, 'r:utf-8' ) {|f| f.read }
  new( html )
end