Sha256: 41c9299bb1d3fa72fde7569ff1fc4f90035dc889f135cf54c8b7e1b57a9a7313

Contents?: true

Size: 1017 Bytes

Versions: 27

Compression:

Stored size: 1017 Bytes

Contents

include $(shell bundle exec ruby -e 'require "orchestration/make"')

#
# Example test command
#
# Define your test tasks here. The default command runs RSpec and Rubocop but
# you can feel free to add any other tasks you like.
#
# Set up your test dependencies and run tests by calling: `make setup test`
#
# Subsequent test runs can skip the setup step and simply run: `make test`
#
.PHONY: test
test:
	bundle exec rspec
	bundle exec rubocop

#
# Define any custom setup that needs to take place before running tests.
# If the command exists, it will be called immediately after the `setup`
# command (which starts containers and sets up the database).
#
# This command can be deleted if it is not needed.
#
.PHONY: post-setup
post-setup:
	@# Setup tasks that are not already provided by Orchestration go here.

#
# Launch all dependencies needed for a development environment and set up the
# development database.
#
.PHONY: develop
develop:
	bundle install
	@$(MAKE) setup env=test
	@$(MAKE) setup env=development

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
orchestration-0.7.15 lib/orchestration/templates/application.mk.erb
orchestration-0.6.16 lib/orchestration/templates/application.mk.erb
orchestration-0.7.14 lib/orchestration/templates/application.mk.erb
orchestration-0.7.13 lib/orchestration/templates/application.mk.erb
orchestration-0.6.15 lib/orchestration/templates/application.mk.erb
orchestration-0.7.12 lib/orchestration/templates/application.mk.erb
orchestration-0.6.14 lib/orchestration/templates/application.mk.erb
orchestration-0.7.11 lib/orchestration/templates/application.mk.erb
orchestration-0.6.13 lib/orchestration/templates/application.mk.erb
orchestration-0.7.10 lib/orchestration/templates/application.mk.erb
orchestration-0.7.9 lib/orchestration/templates/application.mk.erb
orchestration-0.6.12 lib/orchestration/templates/application.mk.erb
orchestration-0.7.8 lib/orchestration/templates/application.mk.erb
orchestration-0.6.11 lib/orchestration/templates/application.mk.erb
orchestration-0.7.6 lib/orchestration/templates/application.mk.erb
orchestration-0.6.10 lib/orchestration/templates/application.mk.erb
orchestration-0.7.5 lib/orchestration/templates/application.mk.erb
orchestration-0.7.4 lib/orchestration/templates/application.mk.erb
orchestration-0.6.9 lib/orchestration/templates/application.mk.erb
orchestration-0.6.8 lib/orchestration/templates/application.mk.erb