Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
#insert venue a_venue = Venue.new(venue) a_venue.save #later add if logic once feeds supply the section names associated with each ticket #insert section a_section = Section.new( :name => 'normal', :venue_id => a_venue.id) a_section.save a_ext_db = ExtDb.new(:name => event[:supplier]) a_ext_db.save #insert venue_ext_db a_venue_ext_db = VenueExtDb.new( :venue_id => a_venue.id, :ext_db_id => a_ext_db.id, :ext_venue_id => event[:supplier]) a_venue_ext_db.save
From the Design Piracy series on my blog: