public
Description: Set of ActiveRecord classes used to interact with a WordPress database.
Homepage:
Clone URL: git://github.com/inaka/wp_on_rails.git
wp_on_rails / Rakefile
100644 14 lines (12 sloc) 0.44 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('wp_on_rails','0.1.1') do |p|
  p.description = "Use ActiveRecord to manipulate a WordPress database directly."
  p.url = "http://github.com/inaka/wp_on_rails"
  p.author = "Chad DePue"
  p.email = "chad@inakanetworks.com"
  p.ignore_pattern = ["tmp/*", "script/*"]
  p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }