diff --git a/.travis.yml b/.travis.yml
index e634cf67af5ecc100d97df2dc2bc660f98007f42..15894968080b20b591d22c58c04029b1fc093126 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,4 +15,4 @@ before_install: gem update --remote bundler
 install:
   - bundle install --retry=3
 script:
-  - bundle exec rspec
+  - make test
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..77b570fabd95899948cf56cbe85a430639eb02fa
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+test:
+	bundle exec rspec
+
+gem:
+	# Ensure perms are correct
+	find . -type d -not -path "./.git/*" -exec chmod a+rx '{}' ';'
+	find . -type f -not -path "./.git/*" -exec chmod a+r '{}' ';'
+	chmod a+x bin/sqlint
+	gem build sqlint.gemspec
+
+.PHONY: gem test
diff --git a/lib/sqlint/version.rb b/lib/sqlint/version.rb
index d1d3668e0995d0da4c822f04908fd9ec7f92c627..9f2b74fc05dad5bcf1668331f86c32f1d3c58445 100644
--- a/lib/sqlint/version.rb
+++ b/lib/sqlint/version.rb
@@ -1,3 +1,3 @@
 module SQLint
-  VERSION = "0.1.5"
+  VERSION = "0.1.6"
 end