Sha256: 3aa1a7d3d16367dec83f1b911a1476f0efee45213703cce6f8d8da3125b7af7f

Contents?: true

Size: 659 Bytes

Versions: 2

Compression:

Stored size: 659 Bytes

Contents

CWD := $(shell pwd)

.PHONY: all
all: build

.PHONY: start
start:
	@bundle exec jekyll serve --verbose

.PHONY: test
test:
	@bundle exec jekyll build
	@bundle exec htmlproofer _site --disable-external

.PHONY: build
build: clean
	@gem build *.gemspec
	@echo ::: BUILD :::

.PHONY: install
install: deps
	-@rm -f Gemfile.lock &>/dev/null || true
	@bundle install
	@echo ::: INSTALL :::

.PHONY: push
push: build
	@gem push *.gem
	@echo ::: PUSH :::

.PHONY: clean
clean:
	-@rm -rf *.gem &>/dev/null || true
	@echo ::: CLEAN :::

.PHONY: deps
deps: bundle
	@echo ::: DEPS :::
.PHONY: bundle
bundle:
	@if ! o=$$(which bundle); then gem install bundle jekyll; fi

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-github-plugin-1.0.2 Makefile
jekyll-github-plugin-1.0.1 Makefile