Public Gists by BDQ

Gravatar
Wed Oct 28 02:45:06 -0700 2009
1
2
3
  def load_data
@product = Product.find_by_permalink(params[:product_id])
  end
gist: 128182 lightmine.rake
Gravatar
Thu Jun 11 12:48:13 -0700 2009
1
2
3
namespace :lightmine do
  task :export => :environment do
 
Gravatar
Fri Dec 05 10:15:29 -0800 2008
1
2
3
class AddProductFields < ActiveRecord::Migration
  def self.up
    add_column :products, :cline_price, :decimal, :precision => 8, :scale => 2
Gravatar
Fri Dec 05 10:14:54 -0800 2008
1
2
3
# Uncomment this if you reference any of your controllers in activate
# require_dependency 'application'
 
Gravatar
Wed Dec 03 13:37:02 -0800 2008
1
2
3
namespace :spree do
  desc "Export Products to CSV File"
  task :export_products => :environment do