https://github.com/siman-man/spellcheck
simple spell check script
https://github.com/siman-man/spellcheck
gem ruby
Last synced: 9 months ago
JSON representation
simple spell check script
- Host: GitHub
- URL: https://github.com/siman-man/spellcheck
- Owner: siman-man
- License: mit
- Created: 2017-02-02T11:48:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-09T11:46:38.000Z (over 9 years ago)
- Last Synced: 2024-04-25T06:43:36.786Z (about 2 years ago)
- Topics: gem, ruby
- Language: Ruby
- Size: 88.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Spellcheck
[](https://travis-ci.org/siman-man/spellcheck)
simple spell checker for programming, written in Ruby.
## Installation
```
$ gem install spellcheck
```
## Usage
example text.
```
hello world.
I create aplication now.
good bye
```
run `spellcheck` command
```
$ spellcheck example.md
```
result
```
+----------+--------------------------+------------+-------------+
| Location | Text | Pattern | Expected |
+----------+--------------------------+------------+-------------+
| 2 | I create aplication now. | aplication | application |
+----------+--------------------------+------------+-------------+
result: 1 typo found.
```
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/siman-man/spellcheck. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.