pronto 0.2.0 → 0.2.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 +1 -0
- data/lib/pronto/formatter/github_formatter.rb +1 -1
- data/lib/pronto/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: 672a87b463cba4d6e380e0f87ff04d8e7d6cf12c
|
4
|
+
data.tar.gz: c851282dc64d81f130401012827e7ce7b4ce1646
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfa5641018ebabc4b198cdc37d9796cffce0fefa66edb2a5fef6f05f0e6733ae1c86899884d8c5873e7e329795962b3fb42c3290fd78001916df740cd74a11d8
|
7
|
+
data.tar.gz: 6e46e4a215ab0a39d1c08d55180a837fc2df431102d81587f9e2d1a9ecf1cf463246434cd31ce2de91bf262ba9ec85711addd8bfca7c517c60a7708e7faa3223
|
data/README.md
CHANGED
@@ -55,3 +55,4 @@ Currently available runners:
|
|
55
55
|
* [pronto-flay](https://github.com/mmozuras/pronto-flay)
|
56
56
|
* [pronto-brakeman](https://github.com/mmozuras/pronto-brakeman)
|
57
57
|
* [pronto-rails_best_practices](https://github.com/mmozuras/pronto-rails_best_practices)
|
58
|
+
* [pronto-poper](https://github.com/mmozuras/pronto-poper)
|
@@ -7,7 +7,7 @@ module Pronto
|
|
7
7
|
commit_messages = messages.map do |message|
|
8
8
|
repo = github_slug(message)
|
9
9
|
sha = message.commit_sha
|
10
|
-
position = message.line.commit_line.position
|
10
|
+
position = message.line.commit_line.position if message.line
|
11
11
|
path = message.path
|
12
12
|
body = message.msg
|
13
13
|
|
data/lib/pronto/version.rb
CHANGED