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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cafd58952c20097242fe9ef1af90b8476789d0da
4
- data.tar.gz: 58f713ff788d6e0259f060c6c5c64c10a141af35
3
+ metadata.gz: 18cade83bff004ddd37ab25237b2638b07b14e60
4
+ data.tar.gz: 682aadd62a6a251a66e9b166b1166c591a201cf2
5
5
  SHA512:
6
- metadata.gz: f3d757d27137b03c37ea3b00afdd3399b813570f35078dc58943fbd06c5650d4000b5b7bad19e7d32592f7d8d8c50fa8bb1c5f639910c4308dc90c8987ab6613
7
- data.tar.gz: 9cab67e0a79d364beabf9d0906060da5961dc76339fbb5de3b632ae3dc70cebc5cbf447e5478e18b01b66c6e7391bdda5cfc37c42ba1e5d6bb1d0f56b1e86b76
6
+ metadata.gz: 9a787866231d0122b46752482135b88605acf19ce65e9cb280ad7dbd9b689ab6a28449e4edd875a575c886d5973ebe2fcea8a5ea0c99a3b196f3956b6696a7f5
7
+ data.tar.gz: b331996fe70f4b1a5266ce801720d0d9d335037f4ea016474723cdb9c9f60588011fa8db1ab5212edcf27ef827a2108aa4fb7035c62f4192b22f32971c63b56a
data/README.md CHANGED
@@ -1,8 +1,22 @@
1
1
  # Pronto::Textlint
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pronto/textlint`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Delete this and the text above, and describe your gem
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 `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, 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).
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/[USERNAME]/pronto-textlint.
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
-
@@ -2,6 +2,6 @@ require 'pronto'
2
2
 
3
3
  module Pronto
4
4
  class Textlint < Runner
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-textlint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seiichi KONDO