Sha256: f1f4afdd9cd463abd2b4d4b4a0c380c35077fd0c1cf043dcf2675b580713ec40

Contents?: true

Size: 532 Bytes

Versions: 3

Compression:

Stored size: 532 Bytes

Contents

BUNDLE = bundle
BUNDLE_OPTIONS = -j 3
RSPEC = ${APPRAISAL} rspec
APPRAISAL = ${BUNDLE} exec appraisal

all: test

test: configs bundler appraisal
	${RSPEC} 2>&1

define DATABASE_YML
test:
  adapter: sqlite3
  database: test
test_other:
  adapter: sqlite3
  database: test_other
endef
export DATABASE_YML

configs:
	echo "$${DATABASE_YML}" > spec/internal/config/database.yml

bundler:
	if ! gem list bundler -i > /dev/null; then \
	  gem install bundler; \
	fi
	${BUNDLE} install ${BUNDLE_OPTIONS}

appraisal:
	${APPRAISAL} install

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
slaver-0.2.0 Makefile
slaver-0.0.2 Makefile
slaver-0.0.1 Makefile