Sha256: 68c14ae2157f9dd596fc99141cc85d81a238da75b81005d16085451279e4ccce

Contents?: true

Size: 345 Bytes

Versions: 3

Compression:

Stored size: 345 Bytes

Contents

#!/usr/bin/env ruby
# must be scheduled in crontab to run as the same user as oddb

$: << File.expand_path('../src', File.dirname(__FILE__))
$: << File.expand_path('..', File.dirname(__FILE__))

require 'util/job'
require 'util/exporter'

module ODDB
  module Util
    Job.run do |system|
      Exporter.new(system).export_csv
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
oddb.org-1.0.2 jobs/export_csv
oddb.org-1.0.1 jobs/export_csv
oddb.org-1.0.0 jobs/export_csv