Sha256: 4f9713253179555ab5ea1f4e32e1f470cc5320165a4b25389591f7e45925f888

Contents?: true

Size: 506 Bytes

Versions: 1

Compression:

Stored size: 506 Bytes

Contents

# Makefile before I learn how to use a Rakefile appropriately :P

VERSION = $(shell cat VERSION)

install: 
	bundle install --path vendor/bundle

build: install
	#sbin/rake-deploy1.sh
	bundle exec rake build
	bundle exec rake release
	echo Correctly built and deployed version 1

push-to-rubygems:
	# requires both private key and user/password so only for the maintainer..
	bundle exec rake build
	rake gem
	gem push pkg/ric-$(VERSION).gem

clean:
	rm -rf pkg/ doc/

versions:
	ruby -v
	gem -v
	bundle -v

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ric-0.13.0 Makefile