multi_json 1.20.1 → 1.21.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CONTRIBUTING.md DELETED
@@ -1,53 +0,0 @@
1
- ## Contributing
2
- In the spirit of [free software][free-sw], **everyone** is encouraged to help
3
- improve this project.
4
-
5
- [free-sw]: http://www.fsf.org/licensing/essays/free-sw.html
6
-
7
- Here are some ways *you* can contribute:
8
-
9
- * by using alpha, beta, and prerelease versions
10
- * by reporting bugs
11
- * by suggesting new features
12
- * by writing or editing documentation
13
- * by writing tests
14
- * by writing code (**no patch is too small**: fix typos, add comments, clean up
15
- inconsistent whitespace)
16
- * by refactoring code
17
- * by closing [issues][]
18
- * by reviewing patches
19
-
20
- [issues]: https://github.com/sferik/multi_json/issues
21
-
22
- ## Submitting an Issue
23
- We use the [GitHub issue tracker][issues] to track bugs and features. Before
24
- submitting a bug report or feature request, check to make sure it hasn't
25
- already been submitted. When submitting a bug report, please include a
26
- [Gist][gist] that includes a stack trace and any details that may be necessary
27
- to reproduce the bug, including your gem version, Ruby version, and operating
28
- system. Ideally, a bug report should include a pull request with failing tests.
29
-
30
- [gist]: https://gist.github.com/
31
-
32
- ## Submitting a Pull Request
33
- 1. [Fork the repository.][fork]
34
- 2. [Create a topic branch.][branch]
35
- 3. Add tests for your unimplemented feature or bug fix.
36
- 4. Run `bundle exec rake test`. If your tests pass, return to step 3.
37
- 5. Implement your feature or bug fix.
38
- 6. Run `bundle exec rake test`. If your tests fail, return to step 5.
39
- 7. Run `open coverage/index.html`. If your changes are not completely covered
40
- by your tests, return to step 3.
41
- 8. Run `bundle exec rake mutant` and kill any surviving mutants.
42
- 9. Run `bundle exec rake lint` and fix any offenses.
43
- 10. Run `bundle exec rake yardstick` and add any missing documentation.
44
- 11. Run `bundle exec rake steep` and ensure that the code typechecks.
45
- 12. Add, commit, and push your changes.
46
- 13. [Submit a pull request][pr] that summarizes *what* changes you made and
47
- *why* you made them. If you made any significant decisions along the way,
48
- describe the options you considered and how you thought about the
49
- tradeoffs.
50
-
51
- [fork]: http://help.github.com/fork-a-repo/
52
- [branch]: http://learn.github.com/p/branching.html
53
- [pr]: http://help.github.com/send-pull-requests/