dug 0.2.0 → 0.2.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/README.md +1 -1
- data/lib/dug/configurator.rb +1 -1
- data/lib/dug/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: 9aafb19505a577e0a92f20d17a00c462967940d5
|
|
4
|
+
data.tar.gz: aff86cd29722fee471ad48976485d68d67a616cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9ed3803b8e8ab13f029b66a81ca19e0010b630d5f96d9462be464cc2e32fefebafd6741512a1866d5ea6f791511ac2ba2163662c5490fdbe881ded47f72f467
|
|
7
|
+
data.tar.gz: 889aa7a2ae8ee3020188897be7dd79196770a41cfb1a5c4d5e691315e50fb435f4a33bcb6ebc4b03c282002121863024901f9f879c75758e294b341dc627372f
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://codeclimate.com/github/chrisarcand/dug)
|
|
5
5
|
[](https://codeclimate.com/github/chrisarcand/dug/coverage)
|
|
6
6
|
|
|
7
|
-
Created out of frustration. _"[D]amn yo[u], [G]mail!"_
|
|
7
|
+
Created [out of frustration.](http://chrisarcand.com/introducing-dug/) _"[D]amn yo[u], [G]mail!"_
|
|
8
8
|
|
|
9
9
|
**Dug is a simple, configurable gem to organize your GitHub notification emails
|
|
10
10
|
in ways Gmail can't and in an easier-to-maintain way than large, slow Google
|
data/lib/dug/configurator.rb
CHANGED
|
@@ -3,7 +3,7 @@ require 'yaml'
|
|
|
3
3
|
module Dug
|
|
4
4
|
class Configurator
|
|
5
5
|
LABEL_RULE_TYPES = %i(organization repository reason)
|
|
6
|
-
GITHUB_REASONS = %w(author comment mention team_mention state_change assign)
|
|
6
|
+
GITHUB_REASONS = %w(author comment mention team_mention state_change assign manual subscribed)
|
|
7
7
|
|
|
8
8
|
attr_accessor :client_id
|
|
9
9
|
attr_accessor :client_secret
|
data/lib/dug/version.rb
CHANGED