namespace :tb_commerce do

# Call from a project using this gem with rake tb_commerce:add_sample_data
desc "Calls sample_data.rb to create products, transactions, etc for testing"
task :add_sample_data => :environment do
  TbCommerce::SampleData::add_sample_data
end

# Call from a project using this gem with rake tb_commerce:rm_sample_data
desc "Removes sample_data from DB"
task :rm_sample_data => :environment do

end

end