Sha256: 3f06ba90f50f1f74b5e21ed42ac4ff5da707fd58e532ae707afa086ccfdf4ae5

Contents?: true

Size: 1.36 KB

Versions: 8

Compression:

Stored size: 1.36 KB

Contents

# ==================================================================================== #
# HELPERS
# ==================================================================================== #

## help: print this help message
.PHONY: help
help:
	@echo 'Usage:'
	@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' |  sed -e 's/^/ /'


# ==================================================================================== #
# DEVELOPMENT
# ==================================================================================== #

## bundle: install dependencies
.PHONY: bundle
bundle:
	bundle install

## terminal: go to the interactive terminal
.PHONY: console
console:
	./bin/console

# ==================================================================================== #
# TESTING
# ==================================================================================== #

## test: run tests
.PHONY: test
test:
	rspec

# ==================================================================================== #
# LINTING
# ==================================================================================== #

## lint: run linter
.PHONY: lint
lint:
	rubocop

# ==================================================================================== #
# Release
# ==================================================================================== #

## rel: run release
.PHONY: rel
rel:
	rake release

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aws-secrets-manager-1.1.9 Makefile
aws-secrets-manager-1.1.7 Makefile
aws-secrets-manager-1.0.9 Makefile
aws-secrets-manager-1.0.7 Makefile
aws-secrets-manager-1.0.1 Makefile
aws-secrets-manager-1.0.0 Makefile
aws-secrets-manager-0.4.0 Makefile
aws-secrets-manager-0.3.0 Makefile