Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meghaniankov/boris-bikes
🚲
https://github.com/meghaniankov/boris-bikes
Last synced: about 1 month ago
JSON representation
🚲
- Host: GitHub
- URL: https://github.com/meghaniankov/boris-bikes
- Owner: meghaniankov
- Created: 2019-12-10T14:22:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-23T17:18:48.000Z (almost 5 years ago)
- Last Synced: 2024-10-30T02:38:03.391Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boris Bikes Challenges
A pair programming weekly challenge to build a program that will emulate a bike sharing system. This includes all of the docking stations, bikes, and infrastructure (repair staff, and so on) required to make that a reality.
## Overview
* Simple Ruby program run in the command line
* Introduction to pair programming & TDD## Getting Started
Before you run the program, make sure your gems are up to date by running:
```
$ bundle install
```## Running the program
Use IRB to interact with the program
## Running the tests
To run tests for this program, run:
```
$ rspec
```## Built With
* Ruby
* Rspec (for testing)## User Stories
```
As a person,
So that I can use a bike,
I'd like a docking station to release a bike.As a person,
So that I can use a good bike,
I'd like to see if a bike is working.As a member of the public
So I can return bikes I've hired
I want to dock my bike at the docking station.As a member of the public
So I can decide whether to use the docking station.
I want to see a bike that has been dockedAs a member of the public,
So that I am not confused and charged unnecessarily,
I'd like docking stations not to release bikes when there are none available.As a maintainer of the system,
So that I can control the distribution of bikes,
I'd like docking stations not to accept more bikes than their capacity.As a system maintainer,
So that I can plan the distribution of bikes,
I want a docking station to have a default capacity of 20 bikes.As a system maintainer,
So that busy areas can be served more effectively,
I want to be able to specify a larger capacity when necessary.As a member of the public,
So that I reduce the chance of getting a broken bike in future,
I'd like to report a bike as broken when I return it.As a maintainer of the system,
So that I can manage broken bikes and not disappoint users,
I'd like docking stations not to release broken bikes.As a maintainer of the system,
So that I can manage broken bikes and not disappoint users,
I'd like docking stations to accept returning bikes (broken or not).As a maintainer of the system,
So that I can manage broken bikes and not disappoint users,
I'd like vans to take broken bikes from docking stations and deliver them to garages to be fixed.As a maintainer of the system,
So that I can manage broken bikes and not disappoint users,
I'd like vans to collect working bikes from garages and distribute them to docking stations.
```