Class: Gdshowsdb::SetDiff
Instance Method Summary collapse
-
#initialize(year) ⇒ SetDiff
constructor
A new instance of SetDiff.
Methods inherited from Diff
Constructor Details
#initialize(year) ⇒ SetDiff
Returns a new instance of SetDiff.
3 4 5 6 7 8 |
# File 'lib/gdshowsdb/set_diff.rb', line 3 def initialize(year) set_yaml_parser = SetYAMLParser.from_yaml(year) set_db_extractor = SetDBExtractor.from_db(year) super(set_yaml_parser.parse, set_db_extractor.extract) end |