Sha256: 0dd261d0d0e74af7a6457d24fd9a5d212e2b139dd4f6a56a43a39b78fe7224fe

Contents?: true

Size: 479 Bytes

Versions: 2

Compression:

Stored size: 479 Bytes

Contents

VERSION=$(shell ruby -r./lib/openid/store/sequel/version -e "puts OpenID::Store::Sequel::VERSION")

# default the projcet name to the directory name
PROJECT?=$(notdir $(PWD))
GEM=$(PROJECT)-$(VERSION).gem

.PHONY: test
test:
	bundle exec rake test

.PHONY: package
package: $(GEM)

# Always build the gem
.PHONY: $(GEM)
$(GEM):
	gem build $(PROJECT).gemspec

.PHONY: install
install: $(GEM)
	gem install $<

# Publish to gemgate
.PHONY: publish
publish: $(GEM)
	 gem push $(GEM)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
openid-store-sequel-0.0.2 Makefile
openid-store-sequel-0.0.1 Makefile