Skip to content
Snippets Groups Projects
Commit 5ede9635 authored by Steve Purcell's avatar Steve Purcell
Browse files

Ensure reliable permissions on gem files, and release 0.1.6

parent b5072a95
No related branches found
No related tags found
No related merge requests found
......@@ -15,4 +15,4 @@ before_install: gem update --remote bundler
install:
- bundle install --retry=3
script:
- bundle exec rspec
- make test
Makefile 0 → 100644
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
module SQLint
VERSION = "0.1.5"
VERSION = "0.1.6"
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment