Sha256: fe717c9dbdb3eec24fc1e2e6ea3e10f100d2772596476f9ddf8ebb6eeebd5b10

Contents?: true

Size: 839 Bytes

Versions: 5

Compression:

Stored size: 839 Bytes

Contents

module TwitterArchive
  module Backends
    class YamlArchive
      # Archive the twitter results in a yaml file.
      # This requires opts to have 'yaml_file' set to the location to write the archive.
      def archive(results, opts=nil)

         opts['yaml_file'] ||= File.dirname(__FILE__) + '/../../../tmp/test_yaml_archive.yml'

        # sort in chronological order
        results.sort! {|a, b| a['created_at'] <=> b['created_at'] }

        # This will print the '---' yaml header between each set of results, which will prevent
        # yaml from parsing anything but the first set.  But this backend is currently only being 
        # used for testing so I am not going to worry about it right now.

        File.open(opts['yaml_file'], 'a+') do |out|
          YAML.dump(results, out)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
csexton-twitter_archive-0.0.3 lib/twitter_archive/backends/yaml_archive.rb
csexton-twitter_archive-0.0.4 lib/twitter_archive/backends/yaml_archive.rb
csexton-twitter_archive-0.0.5 lib/twitter_archive/backends/yaml_archive.rb
csexton-twitter_archive-0.0.6 lib/twitter_archive/backends/yaml_archive.rb
csexton-twitter_archive-0.0.7 lib/twitter_archive/backends/yaml_archive.rb