This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# In my Image Bank Rails App | |
class Payment < ActiveRecord::Base | |
default_scope :conditions => { :application => 'ImageBank' } | |
before_save { |p| p.application="ImageBank" } | |
end | |
# In my Live Performances Rails App | |
class Payment < ActiveRecord::Base | |
default_scope :conditions => { :application => 'LivePerformances' } | |
before_save { |p| p.application="LivePerformances" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module TabsHelper | |
# takes the block | |
def tabs_for(current_tab, &block) | |
yield Tab.new(current_tab, self) | |
end | |
class Tab | |
def initialize(current_tab, template) | |
@current_tab = current_tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module OrdersHelper | |
# helper to determine the active order step given : | |
# 1. a params[:step] | |
# 2. if none, according to the order's state | |
def active_step | |
@active_step ||= if params[:step] | |
params[:step] | |
elsif %(opened).include? @order.state | |
"1start" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PseudoAR | |
def self.find(args) | |
new.tap do |ar| | |
# do some crazy SQL | |
end | |
end | |
def self.create(args) | |
new.tap do |ar| | |
# do some crazy validation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module RAAWS | |
ONE_NECESSARY_SEARCH_PARAM =%w< | |
Actor Artist AudienceRating Author | |
Brand BrowseNode Composer Conductor CityDirector | |
Keywords Manufacturer MusicLabel Neighborhood | |
Orchestra Power Publisher TextStream Title> | |
class ItemOperation < Operation | |
def self.lookup(item_id, index=nil, &block) | |
new.tap do |obj| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PaymentsController < ApplicationController | |
before_filter :find_payment | |
layout "secure" | |
def show(); end | |
private | |
def find_payment | |
@payment = current_order.payment | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#route.rb | |
map.resources "orders", order_hash do |order| | |
order.resource "invoice" | |
order.resource "payment", :new => {"express" => :get} | |
end | |
#map.resoures "payments" # not in use anymore ! | |
#payments_controller.rb | |
before_filter :require_order | |
def show |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Creme | |
def cost | |
super + 0.4 | |
end | |
end | |
class Coffee | |
def cost | |
3 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'mixology' | |
module Creme | |
def cost | |
super + 0.4 | |
end | |
end | |
class Coffee |
OlderNewer