We love pull requests from everyone. By participating in this project, you agree to abide by the code of conduct.
Fork, then clone the repo:
git clone [email protected]:your-username/meta-tags.git
Set up your machine:
./bin/setup
Make sure the tests pass:
rake
Make your change. Add tests for your change. Make the tests pass:
rake
HTML standard states that the
argument for the meta tag name should be name
:
<meta name="keywords" content="HTML,CSS,XML,JavaScript" />
Some social networks require to use property
argument instead (Facebook Open Graph).
MetaTags supports the most popular meta tags, but there will be tags that are not covered
by default. If you found one, and you feel like the community would benefit from
MetaTags supporting it out of the box, feel free to add it to the list
and submit a pull request.
Push to your fork and submit a pull request.
At this point you're waiting on us. We like to at least comment on pull requests within couple days. We may suggest some changes or improvements or alternatives.
Some things that will increase the chance that your pull request is accepted:
- Write tests.
- Make sure CodeClimate build is clean.
- Write a good commit message.