README.md in spektrix-0.0.1 vs README.md in spektrix-0.0.2.1

- old
+ new

@@ -39,11 +39,11 @@ ``` # Use ## Events, instances and prices -Events have instances, which in turn have seating plans and a price list. Seating plans aren't catered for, but bands and ticket types are. +Events have instances, which in turn have seating plans and a price list. ``` include Spektrix #You don't have to do this, just prefix all the calls with `Spektrix::` otherwise Events::Event.first #get the first event in the list e = Events::Event.find(123) #or get a specific event by ID @@ -61,9 +61,12 @@ ``` Spektrix::Tickets::Band.all #a collection of bands Spektrix::Tickets::PriceList.where(event_id: 123) #the prices for event 123, without calling the Event itself. ``` + +## Custom Attributes +Spektrix allows you to set custom attributes for various objects. This library handles these automatically, and they're accessible as instance variables on your objects. # Contributing We'd love to have your input if you're making use of this: 1. Fork the repo