- Main branch: master
- Ruby version: "2.3.1"
- Rails version: "~> 4.2"
- PG version: ~> 0.17.1
To install (development environment) on your machine, just follow the tips above:
% git clone [email protected]:cosmitdev/pipe-project.git
After you have cloned this repo, run this setup script to set up your machine with the necessary dependencies to run and test this app:
% ./bin/setup
It assumes you have a machine equipped with Ruby, Postgres, etc. If not, set up your machine with this script.
After setting up, you can run the application using Heroku Local:
% heroku local
We use Capybara Webkit for full-stack JavaScript integration testing. It requires QT. Instructions for installing QT are here.
- Create Test DB and run migrations
bin/rake db:create db:migrate RAILS_ENV=test
- Run Specs
bundle exec rspec .
In all projects we work with feature branches
. It's a good way to controll who are doing what and to improve quality of code, once you need to up a PR with that branch after.
The nomenclature of the feature branch is composite by {name initials}-{feature name || description}
, and probably will be something like that: pm-review-typo
or pm-create-users
.
Also, always keep you branch up-to-date with master, and keep master updated too. To do this, always run git checkout master && git pull origin master
Now, to create the feature branch just run git checkout master && git checkout -b [name-of-branch]
.
After you finish the implementations what you did on your branch, you can up this to Github and open a Pull Request. This way other persons of the project can available your things and propose improvements. Just create the PR when you have confidence you create everything you need to, like views, controllers, specs...