Skip to content

Commit 9e7feb3

Browse files
authored
chore(contributions):add & recognize contributors (#47)
* Add @BurkHufnagel as a contributor * Add @sanko1983 as a contributor * Add @runnerdave as a contributor * Add @igniteram as a contributor * chore(contributions):add & recognize contributors ✨ * fix(circle-ci):fixed circle ci tests
1 parent edf91fa commit 9e7feb3

File tree

6 files changed

+1227
-9
lines changed

6 files changed

+1227
-9
lines changed

.all-contributorsrc

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"projectName": "protractor-cucumber-typescript",
3+
"projectOwner": "igniteram",
4+
"repoType": "github",
5+
"repoHost": "https://github.com",
6+
"files": [
7+
"README.md"
8+
],
9+
"imageSize": 100,
10+
"commit": true,
11+
"contributors": [
12+
{
13+
"login": "igniteram",
14+
"name": "Ram Pasala",
15+
"avatar_url": "https://avatars1.githubusercontent.com/u/15998104?v=4",
16+
"profile": "https://in.linkedin.com/in/rpasala",
17+
"contributions": [
18+
"code",
19+
"doc",
20+
"test",
21+
"bug"
22+
]
23+
},
24+
{
25+
"login": "BurkHufnagel",
26+
"name": "Burk Hufnagel",
27+
"avatar_url": "https://avatars1.githubusercontent.com/u/304328?v=4",
28+
"profile": "https://github.com/BurkHufnagel",
29+
"contributions": [
30+
"code"
31+
]
32+
},
33+
{
34+
"login": "sanko1983",
35+
"name": "Alejandro",
36+
"avatar_url": "https://avatars3.githubusercontent.com/u/6922793?v=4",
37+
"profile": "https://github.com/sanko1983",
38+
"contributions": [
39+
"code",
40+
"bug"
41+
]
42+
},
43+
{
44+
"login": "runnerdave",
45+
"name": "David Jimenez",
46+
"avatar_url": "https://avatars0.githubusercontent.com/u/14068808?v=4",
47+
"profile": "https://github.com/runnerdave",
48+
"contributions": [
49+
"code"
50+
]
51+
}
52+
]
53+
}

README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<p align="center">
1111
<a href="https://circleci.com/gh/igniteram/protractor-cucumber-typescript/tree/master"><img alt="circleCI Status" src="https://circleci.com/gh/igniteram/protractor-cucumber-typescript/tree/master.svg?style=shield"></a>
1212
<a href="https://david-dm.org/igniteram/protractor-cucumber-typescript"><img alt="dependencies status" src="https://david-dm.org/igniteram/protractor-cucumber-typescript.svg"></a>
13-
<a href=""><img alt="typescript" src="https://badges.frapsoft.com/typescript/code/typescript.svg?v=101">
13+
<a href=#contributors><img alt="contributors" src="https://img.shields.io/badge/all_contributors-4-orange.svg"></a>
1414
<a href="https://opensource.org/licenses/MIT"><img alt="MIT License" src="https://img.shields.io/dub/l/vibe-d.svg"></a>
1515
</p>
1616

@@ -146,9 +146,27 @@ They can be customized according to user's specific needs.
146146
## Contributions
147147
For contributors who want to improve this repo by contributing some code, reporting bugs, issues or improving documentation - PR's are highly welcome, please maintain the coding style , folder structure , detailed description of documentation and bugs/issues with examples if possible.
148148

149+
## Contributors
150+
151+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
152+
<!-- prettier-ignore -->
153+
| [<img src="https://avatars1.githubusercontent.com/u/15998104?v=4" width="100px;"/><br /><sub><b>Ram Pasala</b></sub>](https://in.linkedin.com/in/rpasala)<br />[💻](https://github.com/igniteram/protractor-cucumber-typescript/commits?author=igniteram "Code") [📖](https://github.com/igniteram/protractor-cucumber-typescript/commits?author=igniteram "Documentation") [⚠️](https://github.com/igniteram/protractor-cucumber-typescript/commits?author=igniteram "Tests") [🐛](https://github.com/igniteram/protractor-cucumber-typescript/issues?q=author%3Aigniteram "Bug reports") | [<img src="https://avatars1.githubusercontent.com/u/304328?v=4" width="100px;"/><br /><sub><b>Burk Hufnagel</b></sub>](https://github.com/BurkHufnagel)<br />[💻](https://github.com/igniteram/protractor-cucumber-typescript/commits?author=BurkHufnagel "Code") | [<img src="https://avatars3.githubusercontent.com/u/6922793?v=4" width="100px;"/><br /><sub><b>Alejandro</b></sub>](https://github.com/sanko1983)<br />[💻](https://github.com/igniteram/protractor-cucumber-typescript/commits?author=sanko1983 "Code") [🐛](https://github.com/igniteram/protractor-cucumber-typescript/issues?q=author%3Asanko1983 "Bug reports") | [<img src="https://avatars0.githubusercontent.com/u/14068808?v=4" width="100px;"/><br /><sub><b>David Jimenez</b></sub>](https://github.com/runnerdave)<br />[💻](https://github.com/igniteram/protractor-cucumber-typescript/commits?author=runnerdave "Code") |
154+
| :---: | :---: | :---: | :---: |
155+
<!-- ALL-CONTRIBUTORS-LIST:END -->
156+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
157+
<!-- prettier-ignore -->
158+
<!-- ALL-CONTRIBUTORS-LIST:END -->
159+
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
160+
161+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
162+
<!-- prettier-ignore -->
163+
<!-- ALL-CONTRIBUTORS-LIST:END -->
164+
165+
This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!
166+
149167
## License
150168
```
151169
MIT License
152170
153171
Copyright (c) 2018 Ram Pasala
154-
```
172+
```

0 commit comments

Comments
 (0)