Skip to content

Instantly share code, notes, and snippets.

@panayi
Forked from stympy/subscription_plan.rb
Created September 2, 2012 09:31
Show Gist options
  • Select an option

  • Save panayi/3596211 to your computer and use it in GitHub Desktop.

Select an option

Save panayi/3596211 to your computer and use it in GitHub Desktop.
Extension to SubscriptionPlan provided in the SaaS Rails Kit
Rails.application.config.to_prepare do
SubscriptionPlan.class_eval do
scope :active, where(:active => true)
scope :by_price, order(:amount)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment