Sha256: bed3fe32380606e0a61af9be2d03d01bfdb335192993da80ec628c2dc44654ad

Contents?: true

Size: 447 Bytes

Versions: 5

Compression:

Stored size: 447 Bytes

Contents

RAILS_ENV = test
BUNDLE = RAILS_ENV=${RAILS_ENV} bundle
BUNDLE_OPTIONS = -j 2
RSPEC = rspec
APPRAISAL = appraisal

all: test

test: bundler/install appraisal/install
	${BUNDLE} exec ${APPRAISAL} ${RSPEC} spec 2>&1

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

appraisal/install:
	${BUNDLE} exec ${APPRAISAL} install

clear:
	rm -rf gemfiles
	rm -f Gemfile.lock

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
string_tools-0.8.0 Makefile
string_tools-0.7.0 Makefile
string_tools-0.6.1 Makefile
string_tools-0.6.0 Makefile
string_tools-0.5.0 Makefile