smart_todo 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml DELETED
@@ -1,15 +0,0 @@
1
- sudo: false
2
- cache: bundler
3
- language: ruby
4
- before_install:
5
- - gem update bundler
6
- rvm:
7
- - 2.3
8
- - 2.4
9
- - 2.5
10
- - 2.6
11
- script:
12
- - bundle exec rubocop --config .rubocop.yml
13
- - bundle exec rake test
14
- notifications:
15
- email: false
data/CHANGELOG.md DELETED
@@ -1,63 +0,0 @@
1
- # Changelog
2
- All notable changes to this project will be documented in this file.
3
-
4
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
-
7
- ## [Unreleased]
8
-
9
- ## [1.2.0] - 2019-11-25
10
- ### Fixed
11
- - Fixed crash with badly formated TODO(on:) (i.e. `TODO(on: 'blabla'))
12
-
13
- ### Added
14
- - Added the `on: gem_bump` event which will remind you when a gem inside your
15
- Gemfile.lock snapshot gets updated to a specific version.
16
-
17
- ```ruby
18
- # TODO(on: gem_bump('rails', '6.1'), to: '...')
19
- ```
20
-
21
- ## [1.1.0] - 2019-09-06
22
- ### Fixed
23
- - Fixed the SmartTodo cop to add an offense in case a SmartTodo has a wrong event.
24
- ```ruby
25
- # Bad
26
- #
27
- # TODO(on '2019-08-08')
28
- ```
29
-
30
- ### Added
31
- - SmartTodo will now use the fallback channel in case a todo has a channel
32
- assignee that doesn't exist.
33
- - Added a new `Output` dispatcher which will just output the expired event.
34
- By default SmartTodo will now output expired todo in the terminal instead
35
- of not running at all.
36
-
37
- Users should now pass a `--dispatcher` to the CLI to let SmartTodo through
38
- which dispatcher the message should be send.
39
-
40
- ```sh
41
- bin/smart_todo --dispatcher 'slack'
42
- ```
43
-
44
- For backward compatibility reasons, the dispacher used will be Slack, in
45
- case you have the `ENABLE_SMART_TODO` environment set. This will be removed
46
- in the next major version.
47
-
48
- ## [1.0.2] - 2019-08-09
49
- ### Fixed
50
- - Fixed the SmartTodo cop to add an offense in case a SmartTodo has no assignee.
51
- ```ruby
52
- # Bad
53
- #
54
- # TODO(on: date('2019-08-08'))
55
- ```
56
-
57
- ## [1.0.1] - 2019-08-06
58
- ### Fixed
59
- - Fixed `issue_close` event making a call to the `pulls/` GH endpoint instead of the `issues/` one
60
-
61
- ## [1.0.0] - 2019-07-19
62
- ### Added
63
- - Initial Release