Sha256: b5eeb83a3db86ff5a516716ca2f6dfa548eeebb0ad80fb19b3a70b051ce8fb39

Contents?: true

Size: 409 Bytes

Versions: 3

Compression:

Stored size: 409 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/updater'

module ODDB
 module Util
   Job.run do |system|
     updater = Updater.new system
     if updater.update_bsv
       updater.update_bsv_followers
     end
   end
 end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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