summaryrefslogtreecommitdiff
path: root/Makefile
blob: e6e5fbe2cbddecb1b7f71ca0e8d2b14f011e2c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
version := $$(grep s.version nlp_ruby.gemspec | awk '{print $$3}' | sed "s|'||g")


all:
	gem build nlp_ruby.gemspec

install:
	gem install nlp_ruby-$(version).gem

clean:
	gem uninstall nlp_ruby -v $(version)