8000 Ensure reliable permissions on gem files, and release 0.1.6 · purcell/sqlint@5ede963 · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
Ensure reliable permissions on gem files, and release 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Nov 24, 2017
1 parent b5072a9 commit 5ede963
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ before_install: gem update --remote bundler
install:
- bundle install --retry=3
script:
- bundle exec rspec
- make test
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion lib/sqlint/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SQLint
VERSION = "0.1.5"
VERSION = "0.1.6"
end

0 comments on commit 5ede963

Please sign in to comment.
0