Module: HotelBeds::Parser

Included in:
AvailableRoom, CancellationPolicy, Comment, Contract, Customer, Destination, Hotel, Price, Purchase, Reference, Supplier
Defined in:
lib/hotel_beds/parser.rb,
lib/hotel_beds/parser/hotel.rb,
lib/hotel_beds/parser/price.rb,
lib/hotel_beds/parser/errors.rb,
lib/hotel_beds/parser/comment.rb,
lib/hotel_beds/parser/contract.rb,
lib/hotel_beds/parser/customer.rb,
lib/hotel_beds/parser/purchase.rb,
lib/hotel_beds/parser/supplier.rb,
lib/hotel_beds/parser/reference.rb,
lib/hotel_beds/parser/destination.rb,
lib/hotel_beds/parser/room_grouper.rb,
lib/hotel_beds/parser/hotel_service.rb,
lib/hotel_beds/parser/available_room.rb,
lib/hotel_beds/parser/cancellation_policy.rb

Defined Under Namespace

Modules: ClassMethods, InstanceMethods Classes: AvailableRoom, CancellationPolicy, Comment, Contract, Customer, Destination, Errors, Hotel, HotelService, Price, Purchase, Reference, RoomGrouper, Supplier

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
# File 'lib/hotel_beds/parser.rb', line 3

def self.included(base)
  base.extend ClassMethods
  base.send(:include, InstanceMethods)
end