Changeset 219

Show
Ignore:
Timestamp:
09/24/2007 04:38:35 (14 months ago)
Author:
zimbatm
Message:

-40 octets, we're now at 4040

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/camping-unabridged.rb

    r218 r219  
    7373#       ActiveRecord::Schema.define do 
    7474#         create_table :blog_posts, :force => true do |t| 
    75 #           t.column :id,       :integer, :null => false 
    7675#           t.column :user_id,  :integer, :null => false 
    7776#           t.column :title,    :string,  :limit => 255 
     
    8483# For more tips, see http://code.whytheluckystiff.net/camping/wiki/GiveUsTheCreateMethod. 
    8584module Camping 
    86   # Stores an +Array+ of all Camping applications modules.  Modules are added 
    87   # automatically by +Camping.goes+. 
    88   # 
    89   #   Camping.goes :Blog 
    90   #   Camping.goes :Tepee 
    91   #   Camping::Apps # => [Blog, Tepee] 
    92   #  
    9385  C = self 
    94   f=__FILE__ 
    95   S = IO.read(f) unless f =~ /\(/ 
    96   P="Cam\ping Problem!" 
    97  
     86  S = IO.read(__FILE__) rescue nil 
     87  P = "Cam\ping Problem!" 
    9888  H = HashWithIndifferentAccess 
    9989  # An object-like Hash, based on ActiveSupport's HashWithIndifferentAccess.