forked from twilio/twilio-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
33 lines (25 loc) · 1.1 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.PHONY: githooks install test lint docs docker-build docker-push
githooks:
ln -sf ../../githooks/pre-commit .git/hooks/pre-commit
install: githooks
bundle install --with development; bundle exec rake install
test: lint
bundle exec rake spec
lint:
rubocop --cache true --parallel
docs:
yard doc --output-dir ./doc
authors:
echo "Authors\n=======\n\nA huge thanks to all of our contributors:\n\n" > AUTHORS.md
git log --raw | grep "^Author: " | cut -d ' ' -f2- | cut -d '<' -f1 | sed 's/^/- /' | sort | uniq >> AUTHORS.md
API_DEFINITIONS_SHA=$(shell git log --oneline | grep Regenerated | head -n1 | cut -d ' ' -f 5)
docker-build:
docker build -t twilio/twilio-ruby .
docker tag twilio/twilio-ruby twilio/twilio-ruby:${TRAVIS_TAG}
docker tag twilio/twilio-ruby twilio/twilio-ruby:apidefs-${API_DEFINITIONS_SHA}
docker tag twilio/twilio-ruby twilio/twilio-ruby:latest
docker-push:
echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USERNAME}" --password-stdin
docker push twilio/twilio-ruby:${TRAVIS_TAG}
docker push twilio/twilio-ruby:apidefs-${API_DEFINITIONS_SHA}
docker push twilio/twilio-ruby:latest