-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
50 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
publish: | ||
cd client && sbt publishSigned | ||
|
||
.PHONY: publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.PHONY: test publish | ||
|
||
test: | ||
cd client && mocha test | ||
|
||
publish: | ||
cd client && npm publish |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
lint: | ||
pyflakes client/relevanced_client/client.py client/relevanced_client/exceptions.py | ||
pyflakes client/relevanced_client/client.py | ||
|
||
.PHONY: lint | ||
test: | ||
cd client && nosetests relevanced_client/test | ||
|
||
publish: | ||
cd client && python setup.py register -r pypi && python setup.py sdist upload -r pypi | ||
|
||
.PHONY: lint test publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.PHONY: test publish | ||
|
||
test: | ||
cd client && rspec | ||
|
||
publish: | ||
cd client && npm publish | ||
rm -f client/*.gem | ||
cd client && gem build relevanced_client.gemspec | ||
mv client/*.gem client/relevanced_client.gem | ||
gem push client/relevanced_client.gem |