Skip to content

Latest commit

 

History

History
60 lines (36 loc) · 1.91 KB

README.md

File metadata and controls

60 lines (36 loc) · 1.91 KB

Deployment Diagrams

Codeship Status for mrlevitas/deployment_cycle Coverage Status Code Climate

Deployment Diagrams is an interface that allows users to create, view and share their timelines. Timelines allow teams to coordinate the development or release of a product around ‘events’. Different team members can filter these events by tags (i.e. Dev, Test, Q/A, Release) to view events pertinent to their role.

Deployment Diagrams was developed in Ruby on Rails 4 using Ruby version 2.0.0

Also used in the application:

Foundation (http://foundation.zurb.com/) for css styling. Devise (https://github.com/plataformatec/devise) used for user authentication.

To get it running locally:

git clone https://github.com/mrlevitas/deployment_cycle.git
cd deployment_cycle
bundle install

Initiate local database:

rake db:create
rake db:migrate

To deploy locally, run:

rails s

and navigate to localhost:3000

The following gems were used to develop and run unit and feature tests:

To run test suite, prepare for testing: rake db:test:prepare

To run all test files, run:

rake

You may specify an individual test file to run using rspec:

rspec <full test name>

For example:

rspec spec/features/user/01_user_sign_up_spec.rb