Skip to content

Commit

Permalink
~readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vantoozz committed Jun 30, 2017
1 parent 5d089af commit bc23b41
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .githooks/setup.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env bash

if [ -d ".git/hooks" ]; then
cp bin/change-detector .git/hooks/change-detector
cp .githooks/change-detector .git/hooks/change-detector

cp bin/pre-commit .git/hooks/pre-commit
cp .githooks/pre-commit .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit

cp bin/post-merge .git/hooks/post-merge
cp .githooks/post-merge .git/hooks/post-merge
chmod +x .git/hooks/post-merge

cp bin/post-checkout .git/hooks/post-checkout
cp .githooks/post-checkout .git/hooks/post-checkout
chmod +x .git/hooks/post-checkout
fi
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Free proxy scraper library
# Free proxies scraper [![SensioLabsInsight](https://insight.sensiolabs.com/projects/d5cffc7f-030f-49b3-ac7f-3769db037ee7/big.png)](https://insight.sensiolabs.com/projects/d5cffc7f-030f-49b3-ac7f-3769db037ee7)
##Library for scraping free proxies lists

[![Build Status](https://travis-ci.org/vantoozz/proxy-scraper.svg?branch=master)](https://travis-ci.org/vantoozz/proxy-scraper)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/4b3e0816e98d486e9f0eff445a6310c6)](https://www.codacy.com/app/vantoozz/proxy-scraper?utm_source=github.com&utm_medium=referral&utm_content=vantoozz/proxy-scraper&utm_campaign=Badge_Grade)
[![Coverage Status](https://coveralls.io/repos/github/vantoozz/proxy-scraper/badge.svg?branch=master)](https://coveralls.io/github/vantoozz/proxy-scraper?branch=master)

[![SensioLabsInsight](https://insight.sensiolabs.com/projects/d5cffc7f-030f-49b3-ac7f-3769db037ee7/big.png)](https://insight.sensiolabs.com/projects/d5cffc7f-030f-49b3-ac7f-3769db037ee7)

## Tests

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "vantoozz/proxy-scrapper",
"name": "vantoozz/proxy-scraper",
"license": "MIT",
"type": "library",
"description": "Free proxy scrapper",
"description": "Free proxies scraper",
"authors": [
{
"name": "Ivan Nikitin",
Expand Down Expand Up @@ -55,10 +55,10 @@
},
"scripts": {
"post-install-cmd": [
"bash bin/setup.sh"
"bash .githooks/setup.sh"
],
"post-update-cmd": [
"bash bin/setup.sh"
"bash .githooks/setup.sh"
]
}
}

0 comments on commit bc23b41

Please sign in to comment.