This file contains hidden or 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 Track | |
| ATTRIBUTES = [:name, :id, :artist, :time, :rating] | |
| ATTRIBUTES.each do |a| | |
| attr_accessor a | |
| end | |
| def initialize(hash) | |
| ATTRIBUTES.each do |attr| | |
| self.send("#{attr}=", (hash[attr] || "")) |
This file contains hidden or 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
| RuntimeError (FLAGRANT ERROR!): | |
| /app/controllers/hub_controller.rb:16:in `index' | |
| /vendor/rails/actionpack/lib/action_controller/base.rb:1166:in `send' | |
| /vendor/rails/actionpack/lib/action_controller/base.rb:1166:in `perform_action_without_filters' | |
| /vendor/rails/actionpack/lib/action_controller/filters.rb:579:in `call_filters' | |
| /vendor/rails/actionpack/lib/action_controller/filters.rb:572:in `perform_action_without_benchmark' | |
| /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' | |
| /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/benchmark.rb:293:in `measure' | |
| /vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue' | |
| /vendor/rails/actionpack/lib/action_controller/rescue.rb:201:in `perform_action_without_caching' |
This file contains hidden or 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
| <% | |
| # table_for @discount_codes do |table| | |
| # table.column :id, :label => 'ID' | |
| # table.column :code | |
| # table.column :max_uses, :label => 'Maximum Uses' do |discount_code| | |
| # discount_code.max_uses || 'Unlimited' | |
| # end | |
| # end | |
| # would generate something like this... |
This file contains hidden or 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
| it "should send an invitation notification" do | |
| InvitationMailer.stub!(:deliver_invitation) | |
| InvitationMailer.should_receive(:deliver_invitation).and_return(true) | |
| create_invitation | |
| end | |
| it "should send an invitation notification" do | |
| InvitationMailer.stub!(:deliver_invitation) | |
| InvitationMailer.should_not_receive(:deliver_invitation) | |
| create_invitation |
This file contains hidden or 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
| ** [domU-12-31-39-01-8C-73 :: out] key_read: uudecode AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==[gw.onehub.com]:8022,[69.84.249.99]:8022 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA402KMw5Wz2FyGNU9Tu/PwlguHHx7i6Bp4SXZeDT+zq/oFuaBXfzlfYz899R4sjIYcKS9ggqSBEiihyPRoPcU6uckNuM5GUidTph30gsIlc/5syrTY3Ts6x6LvUbjk01qBmSPDySnZLiddYJJBqy7bM53nhYqbJ3BWKUA1BjMz6D3TqfqtPDrXfHFZ8UgTsF5kM08m5i9P10U6VNRDlBDgetIryqVQbOA6/MsrpU8FX7AhhDW8aTTw665wIWzyjo3YH86v5Y/IUAXUp7Qbd5zFFoAeakZx6vx9KpDVRXUbKvkdMVmrzJQXADmqa8I5ocIh96C2W+CjT7yt6sCExWB2w== | |
| ** failed | |
| ** key_read: uudecode AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mU |
This file contains hidden or 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 Widget < ActiveRecord::Base | |
| has_many :asset_maps, :as => :owner | |
| has_many :assets, :through => :asset_maps | |
| ... | |
| end | |
| class AssetMap < ActiveRecord::Base | |
| belongs_to :owner, :polymorphic => true | |
| belongs_to :asset |
This file contains hidden or 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 MyClass | |
| def self.foo | |
| 'bar' | |
| end | |
| end | |
| module Bazify | |
| def foo | |
| 'baz' + super | |
| end |
This file contains hidden or 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
| >> CalendarEvent.new(\ | |
| :start_time => {:date => '6/23/2009', :time => '12:30', :meridian => 'pm'}) | |
| => #<CalendarEvent start_time: "2009-06-23 19:30:00"> |
This file contains hidden or 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
| CalendarEvent < ActiveRecord::Base | |
| ... | |
| def start_time=(new_time) | |
| self[:start_time] = parse_time_from_hash(new_time) | |
| end | |
| end |
This file contains hidden or 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
| def start_time_with_hash_parsing=(new_time) | |
| new_time = parse_time_from_hash(new_time) | |
| start_time_without_hash_parsing = new_time | |
| end | |
| alias_method_chain :start_time=, :hash_parsing |
OlderNewer