Sha256: a2461a6334bcd8be11b501d75945ff3fa044b3b937297c9a7cca764a519ea1e9

Contents?: true

Size: 402 Bytes

Versions: 5

Compression:

Stored size: 402 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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
string_tools-0.4.0 Makefile
string_tools-0.3.1 Makefile
string_tools-0.3.0 Makefile
string_tools-0.2.0 Makefile
string_tools-0.1.0 Makefile