Sha256: 5620af92c758739456d7a8e025479d3cfb1fa8b0c00febdec7d332504045070b

Contents?: true

Size: 1.2 KB

Versions: 17

Compression:

Stored size: 1.2 KB

Contents

.PHONY: githooks install test test-docker lint docs docker-build docker-push

githooks:
	ln -sf ../../githooks/pre-commit .git/hooks/pre-commit

install:
	bundle install --with development; bundle exec rake install

test:
	bundle exec rake spec

test-docker:
	docker build -t twilio/twilio-ruby .
	docker run twilio/twilio-ruby bundle exec rake spec

docs:
	bundle exec 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)
CURRENT_TAG=$(shell expr "${GITHUB_TAG}" : ".*-rc.*" >/dev/null && echo "rc" || echo "latest")
docker-build:
	docker build -t twilio/twilio-ruby .
	docker tag twilio/twilio-ruby twilio/twilio-ruby:${GITHUB_TAG}
	docker tag twilio/twilio-ruby twilio/twilio-ruby:apidefs-${API_DEFINITIONS_SHA}
	docker tag twilio/twilio-ruby twilio/twilio-ruby:${CURRENT_TAG}

docker-push:
	docker push twilio/twilio-ruby:${GITHUB_TAG}
	docker push twilio/twilio-ruby:apidefs-${API_DEFINITIONS_SHA}
	docker push twilio/twilio-ruby:${CURRENT_TAG}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
twilio-ruby-5.77.0 Makefile
twilio-ruby-5.76.0 Makefile
twilio-ruby-5.75.0 Makefile
twilio-ruby-5.74.5 Makefile
twilio-ruby-5.74.4 Makefile
twilio-ruby-5.74.3 Makefile
twilio-ruby-5.74.2 Makefile
twilio-ruby-5.74.1 Makefile
twilio-ruby-5.74.0 Makefile
twilio-ruby-5.73.4 Makefile
twilio-ruby-5.73.3 Makefile
twilio-ruby-5.73.2 Makefile
twilio-ruby-5.73.1 Makefile
twilio-ruby-5.73.0 Makefile
twilio-ruby-5.72.1 Makefile
twilio-ruby-5.72.0 Makefile
twilio-ruby-5.71.0 Makefile