public
Fork of zackchandler/acts_as_quickbooks_model
Description: Simplying working with models that rely on parsing QuickBooks SDK qbXML messages
Homepage:
Clone URL: git://github.com/artofmission/acts_as_quickbooks_model.git
100644 13 lines (10 sloc) 0.228 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'lib/parser'
 
namespace :qb do
  task :all => [ :model_maps, :migrations ]
  
  task :model_maps do
    QbxmlJsonParser.generate_model_maps
  end
  
  task :migrations do
    QbxmlJsonParser.generate_migrations
  end
end