Skip to content

Instantly share code, notes, and snippets.

@laser
Last active January 4, 2016 15:28
Show Gist options
  • Save laser/8640569 to your computer and use it in GitHub Desktop.
Save laser/8640569 to your computer and use it in GitHub Desktop.
more bad
# our first import
importer = RssImporter.new
importer.articles = a_bunch_of_rss_content
importer.import
imported = importer.result
# second import, same instance of RssImporter
importer.articles = other_rss_content
importer.result # same value as "imported" on line 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment