pronto-textlint 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +21 -11
- data/lib/pronto/textlint/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18cade83bff004ddd37ab25237b2638b07b14e60
|
4
|
+
data.tar.gz: 682aadd62a6a251a66e9b166b1166c591a201cf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a787866231d0122b46752482135b88605acf19ce65e9cb280ad7dbd9b689ab6a28449e4edd875a575c886d5973ebe2fcea8a5ea0c99a3b196f3956b6696a7f5
|
7
|
+
data.tar.gz: b331996fe70f4b1a5266ce801720d0d9d335037f4ea016474723cdb9c9f60588011fa8db1ab5212edcf27ef827a2108aa4fb7035c62f4192b22f32971c63b56a
|
data/README.md
CHANGED
@@ -1,8 +1,22 @@
|
|
1
1
|
# Pronto::Textlint
|
2
2
|
|
3
|
-
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/pronto-textlint.svg)](http://badge.fury.io/rb/pronto-textlint)
|
4
|
+
[![Build Status](https://travis-ci.org/seikichi/pronto-textlint.svg?branch=master)](https://travis-ci.org/seikichi/pronto-textlint)
|
5
|
+
[![Coverage Status](https://coveralls.io/repos/seikichi/pronto-textlint/badge.svg?branch=master&service=github)](https://coveralls.io/github/seikichi/pronto-textlint?branch=master)
|
4
6
|
|
5
|
-
|
7
|
+
[Pronto](https://github.com/mmozuras/pronto) runner for [textlint](https://github.com/textlint/textlint).
|
8
|
+
|
9
|
+
`textlint` is needed to be installed for this runner to work.
|
10
|
+
|
11
|
+
## Configuration
|
12
|
+
|
13
|
+
Configuring textlint via `.textlintrc` will work just fine with `pronto-textlint`.
|
14
|
+
|
15
|
+
You can explicitly specify location of textlint runner by passing `PRONTO_TEXTLINT_PATH` env variable e.g:
|
16
|
+
|
17
|
+
```bash
|
18
|
+
PRONTO_TEXTLINT_PATH=/usr/very/hidden/bin/textlint PRONTO_TEXTLINT_CONFIG_PATH=/path/to/.textlintrc pronto run --index
|
19
|
+
```
|
6
20
|
|
7
21
|
## Installation
|
8
22
|
|
@@ -20,22 +34,18 @@ Or install it yourself as:
|
|
20
34
|
|
21
35
|
$ gem install pronto-textlint
|
22
36
|
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
26
|
-
|
27
37
|
## Development
|
28
38
|
|
29
|
-
After checking out the repo, run `
|
39
|
+
After checking out the repo, run `bundle` to install dependencies. Then, run `rake test` to run the tests.
|
30
40
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
41
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
42
|
+
To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`,
|
43
|
+
which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
44
|
|
33
45
|
## Contributing
|
34
46
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
36
|
-
|
47
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/seikichi/pronto-textlint.
|
37
48
|
|
38
49
|
## License
|
39
50
|
|
40
51
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
-
|