Sha256: c13d5068718e15198483148f4f56f8626e1291d863572b191fe4ac50271bb539

Contents?: true

Size: 656 Bytes

Versions: 2

Compression:

Stored size: 656 Bytes

Contents

# Update the specified dependencies
install:
	@command -v ruby >/dev/null 2>&1 || { echo >&2 "I require ruby but it's not installed. Aborting."; exit 1; }
	@command -v bundle >/dev/null 2>&1 || gem install bundler;
	bundle check || bundle install

# Run all the tests
test: bundler
	bundle exec rake spec

# Build a new package file
build:
	bundle exec gem build trustpilot-business-links.gemspec

# Publish a package on https://rubygems.org/gems/trustpilot-business-links
publish:
	bundle exec gem push $(PACKAGE_FILE)

# Private - ensure gems are up-to-date
bundler:
	bundle check>/dev/null || bundle install


.PHONY: install test build publish bundler

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
trustpilot-business-links-1.1.0 Makefile
trustpilot-business-links-1.0.3 Makefile