Sha256: ed7584d72fda524ab65d64f16891849700fc61b252fb20900f740d6b3551232e
Contents?: true
Size: 691 Bytes
Versions: 2
Compression:
Stored size: 691 Bytes
Contents
include orchestration/Makefile # # Example test command # # This command will call `test-setup` before running your usual test pipeline. # # `test-setup` starts all containers specified in `docker-compose.test.yml`, # waits for them to be ready, and runs DB migrations. # # In your CI environment, simply run `make test`. # .PHONY: test test: test-setup bundle exec rspec bundle exec rubocop bundle exec strong_versions bundle exec brakeman # Start development containers and create/migrate/seed database .PHONY: develop develop: bundle install @$(MAKE) start env=test @$(MAKE) start env=development bundle exec rake db:create bundle exec rake db:migrate bundle exec rake db:seed
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
interactive_record-0.0.1alpha | Makefile |
fiver-0.0alpha | Makefile |