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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 565081e14422215f0f4f0f491575d51f726bf6aa
4
- data.tar.gz: c7b7dc603202b7747d15def4bfac39a92454d7e1
3
+ metadata.gz: 2473c530a92c556c2c9f423b4552180b7185bc10
4
+ data.tar.gz: 34a2d095b7d2b8e244fcc67c83c6d309c7a0248c
5
5
  SHA512:
6
- metadata.gz: 93a8334864aee8f83fe9f56034bfb624081915007598e01a426428e7c2740dddb45507304b3cc3877b5921bdec8c38fd1d83b01ad5e262a44736daef417ae08e
7
- data.tar.gz: c043749154e243595636c7d9b27a85318e8aee6c97b394d4f50b486378723b1a18aa1ecb5fe9fa6f09e1485ddd1437f46a11de25406197492ffc43df798af6b5
6
+ metadata.gz: 5b16aa9ca476c0838e164631ab3028741cd78264cfde92eaad6962b7cfd752d495395260416d3e59e44d7c3f1e0695031bf421d0bb3b2ce1cb738816ea661558
7
+ data.tar.gz: ec324f9f6e1c2e391f557e1e7fde4311d1972beaa98ea9cc2d1d320af661345c5fd1d257aeb35f7d337ab15ca6aaba88743c1cdb568493d10fa0a110f8c0f758
@@ -0,0 +1 @@
1
+ 2.3.0
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Pronto Commentator [![Circle CI](https://circleci.com/gh/rainforestapp/pronto-commentator.svg?style=svg)](https://circleci.com/gh/rainforestapp/pronto-commentator)
2
2
 
3
3
  Pronto Commentator a very simple runner for
4
- [Pronto](https://github.com/mozuras/pronto) that outputs arbitrary comments
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` directory. For
26
- example, `.commentator/ping_bob.md` could look something like this:
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).
@@ -44,7 +44,7 @@ module Pronto
44
44
  def config
45
45
  conf_file = File.join CONFIG_DIR, 'config.yml'
46
46
 
47
- @config ||= YAML.load(File.read(conf_file))
47
+ @commentator_config ||= YAML.load(File.read(conf_file))
48
48
  rescue Errno::ENOENT
49
49
  nil
50
50
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Pronto
3
3
  module CommentatorVersion
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
6
6
  end
@@ -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.6.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.0
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: 2016-04-12 00:00:00.000000000 Z
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.6.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.6.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.5.1
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.