jlindley (owner)

Revisions

  • d2d18e jlindley Mon Aug 24 08:14:12 -0700 2009
gist: 173925 Download_button fork
public
Public Clone URL: git://gist.github.com/173925.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
#!/bin/bash
cd /var/apps/buffarumble/current
export RAILS_ENV=production
/usr/bin/ruby -r'config/environment.rb' \
  -e 'puts RAILS_ENV' \
  -e 'puts "Events undelivered before: #{Event.undelivered.count}"' \
  -e 'Event.undelivered.map(&:dispatch!)' \
  -e 'puts "Events undelivered after: #{Event.undelivered.count}";0'