6 lines
328 B
Ruby
6 lines
328 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require File.dirname(__FILE__) + '/../../../config/environment'
|
|
|
|
begin_at, end_at, effective, url = File.readlines(File.expand_path("../../../../tmp/ask_timer", __FILE__)).map{|line| line.chomp}
|
|
AskTimer.create(:begin_at => Time.parse(begin_at), :end_at => end_at, :effective => effective.to_i, :url => url) |