- checkout latest version of source code from mainline/master
- verify first that the build is passing – if it’s failing, fix it first
- develop feature
- build source locally (in developer’s working copy)
- compilation/producing a running version of the app
- run tests
- this step should be automated
- when build passes, integrate changes into mainline (eg, push to master)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GENERAL | |
# Indent using soft indents (2 whitespace) instead of real tab. | |
# Enabled by default | |
# Style/IndentationWidth | |
# Limit lines to 80 characters except for HAML files. | |
# Enabled by default | |
# Metrics/LineLength |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Available cops (226): | |
# Type 'Lint' (41): | |
Lint/AmbiguousOperator: | |
Description: Checks for ambiguous operators in the first argument of a method invocation | |
without parentheses. | |
StyleGuide: https://github.com/bbatsov/ruby-style-guide#parens-as-args | |
Enabled: true | |
Lint/AmbiguousRegexpLiteral: | |
Description: Checks for ambiguous regexp literals in the first argument of a method |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Last updated: 3 August 2015 | |
# | |
# Applicable for Rubocop 0.32.1 | |
# | |
# This document contains a custom Rubocop ruleset adhering to the Clinic-IT Ruby Style Guide (https://github.com/clinic-it/zen/blob/master/guidelines/ruby.md). | |
# | |
# All rules from the above are listed, with notes about whether they: | |
# - are enabled by default | |
# - require configuration | |
# - have not been implemented |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
rm /usr/local/var/postgres/postmaster.pid | |
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start |
OlderNewer