#Boris Bikes
##Objectives
To explore and improve my knowledge of Test Driven Development (TDD), Object-Oriented Programming (OOP) and Object-Oriented Design (OOD).
The aim was to create a simple system for managing Boris Bikes in London. Using CRC cards, I decided to employ the following classes: Bike, User, DockingStation, Van and Garage. I added a BikeContainer module in order to extract the common functionality in the DockingStation, Van and Garage.
##Technologies
* Ruby 2.0.0
* RSpec 3.0
#How to run it
- git clone https://github.com/tbeeley/BorisBikes2.git
- cd BorisBikes2
- bundle
- irb
- require './files.rb'
#How to run the tests
- cd BorisBikes2
- rspec
