Sha256: 8cb29aba4f2434a36e75da75ae7a199d179df07164e9e69b973bea8e5eb201e5

Contents?: true

Size: 625 Bytes

Versions: 2

Compression:

Stored size: 625 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 dovico-client.gemspec

# Publish a package on https://rubygems.org/gems/dovico
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
dovico-1.4.0 Makefile
dovico-1.3.0 Makefile