Skip to content

Commit

Permalink
get everything in place... now just to fill the places with code
Browse files Browse the repository at this point in the history
  • Loading branch information
joho committed Oct 6, 2009
1 parent 0d644e7 commit 0336c42
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions init.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'geonames_rails'
1 change: 1 addition & 0 deletions install.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# do some installing here
7 changes: 7 additions & 0 deletions lib/geonames_rails.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module GeonamesRails
class Puller
end

class Loader
end
end
19 changes: 19 additions & 0 deletions tasks/geonames_rails.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
namespace :geonames_rails do
desc 'pull down the geonames data from the server'
task :pull_data do
# do something here
end

desc 'load geonames data into db'
task :load_data do
# do something
end

desc 'cleanup geonames data pulled from the server'
task :cleanup_data do
# do something
end

desc 'pull geonames data and load into the database'
task :pull_and_load => [:pull_data, :load_data, :cleanup_data]
end

0 comments on commit 0336c42

Please sign in to comment.