remove old & useless import script
This commit is contained in:
parent
5b90ceb71d
commit
65c106325c
|
@ -1,24 +0,0 @@
|
|||
# custom importer for www.t-nation.com, feel free to borrow ideas
|
||||
|
||||
require File.expand_path(File.dirname(__FILE__) + "/base.rb")
|
||||
require "mysql2"
|
||||
|
||||
class ImportScripts::Tnation < ImportScripts::Base
|
||||
|
||||
DATABASE = "tnation"
|
||||
|
||||
def initialize
|
||||
super
|
||||
|
||||
@client = Mysql2::Client.new(
|
||||
host: "localhost",
|
||||
database: DATABASE
|
||||
)
|
||||
end
|
||||
|
||||
def execute
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
ImportScripts::Tnation.new.perform
|
Loading…
Reference in New Issue