pronto-commentator 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -0
- data/README.md +5 -5
- data/lib/pronto/commentator.rb +1 -1
- data/lib/pronto/commentator/version.rb +1 -1
- data/pronto-commentator.gemspec +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2473c530a92c556c2c9f423b4552180b7185bc10
|
|
4
|
+
data.tar.gz: 34a2d095b7d2b8e244fcc67c83c6d309c7a0248c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b16aa9ca476c0838e164631ab3028741cd78264cfde92eaad6962b7cfd752d495395260416d3e59e44d7c3f1e0695031bf421d0bb3b2ce1cb738816ea661558
|
|
7
|
+
data.tar.gz: ec324f9f6e1c2e391f557e1e7fde4311d1972beaa98ea9cc2d1d320af661345c5fd1d257aeb35f7d337ab15ca6aaba88743c1cdb568493d10fa0a110f8c0f758
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.3.0
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Pronto Commentator [](https://circleci.com/gh/rainforestapp/pronto-commentator)
|
|
2
2
|
|
|
3
3
|
Pronto Commentator a very simple runner for
|
|
4
|
-
[Pronto](https://github.com/
|
|
4
|
+
[Pronto](https://github.com/mmozuras/pronto) that outputs arbitrary comments
|
|
5
5
|
based on filename matching. It's good for tagging specific people to review
|
|
6
6
|
specific kinds of changes (for instance, tagging your security team if
|
|
7
7
|
auth-related files change), and probably other things as well.
|
|
@@ -22,12 +22,12 @@ files:
|
|
|
22
22
|
ping_real_writers.md
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
The file names should point to files in the `.commentator`
|
|
26
|
-
example, `.commentator/ping_bob.md` could look something like
|
|
25
|
+
The message file names should point to files in the `.commentator`
|
|
26
|
+
directory. For example, `.commentator/ping_bob.md` could look something like
|
|
27
|
+
this:
|
|
27
28
|
|
|
28
29
|
```
|
|
29
|
-
@bob looks like someone's trying to change the auth logic again, better take a
|
|
30
|
-
look!
|
|
30
|
+
@bob looks like someone's trying to change the auth logic again, better take a look!
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
(Files don't have to be Markdown, but if you're using Github it's kinda nice).
|
data/lib/pronto/commentator.rb
CHANGED
data/pronto-commentator.gemspec
CHANGED
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
23
|
spec.require_paths = ['lib']
|
|
24
24
|
|
|
25
|
-
spec.add_runtime_dependency 'pronto', '~> 0.
|
|
25
|
+
spec.add_runtime_dependency 'pronto', '~> 0.9.5'
|
|
26
26
|
|
|
27
27
|
spec.add_development_dependency 'bundler', '>= 1.9'
|
|
28
28
|
spec.add_development_dependency 'rake', '~> 10.0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pronto-commentator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emanuel Evans
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pronto
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.9.5
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.9.5
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -105,6 +105,7 @@ files:
|
|
|
105
105
|
- ".gitignore"
|
|
106
106
|
- ".rspec"
|
|
107
107
|
- ".rubocop.yml"
|
|
108
|
+
- ".ruby-version"
|
|
108
109
|
- ".travis.yml"
|
|
109
110
|
- Gemfile
|
|
110
111
|
- Guardfile
|
|
@@ -136,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
136
137
|
version: '0'
|
|
137
138
|
requirements: []
|
|
138
139
|
rubyforge_project:
|
|
139
|
-
rubygems_version: 2.
|
|
140
|
+
rubygems_version: 2.6.13
|
|
140
141
|
signing_key:
|
|
141
142
|
specification_version: 4
|
|
142
143
|
summary: A simple code review tool for Pronto.
|