Sha256: 964220f8efde7c1a6e65b80f0d9c8defd6811e31ccc0b6d3efc8c0536a55b9b0

Contents?: true

Size: 640 Bytes

Versions: 5

Compression:

Stored size: 640 Bytes

Contents

.PHONY: test lint-changed lint docs

CHANGED_RUBY_FILES = $(shell git status --porcelain | grep ".rb" | awk -F ' ' '{print $2}' | tr '\n' ' ')

install:
	bundle install; bundle exec rake install

test-install:
	bundle install

test: lint
	bundle exec rake spec

docs:
	yard doc --output-dir ./doc

lint:
	rubocop --cache true --parallel

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

gem:
	bundle exec rake build | sed -e 's/.*pkg/pkg/g' | sed -e "s/\.$$//g" | xargs gem push

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
twilio-ruby-5.2.2 Makefile
twilio-ruby-5.2.1 Makefile
twilio-ruby-5.2.0 Makefile
twilio-ruby-5.1.2 Makefile
twilio-ruby-5.1.1 Makefile