fit-commit 3.5.0 → 3.6.0

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: e35f0da932fd085b5c20f5618fc7314545d6e2b3
4
- data.tar.gz: 52da67923b6994257f9cc6154395da2f77d80e95
3
+ metadata.gz: 4e1a1edf188e51f1a7a23442f5c71766d4d5db95
4
+ data.tar.gz: 5d0296b196712920a785a136578436c1f75c3ecb
5
5
  SHA512:
6
- metadata.gz: 16a28800d3b00bc7129938d9a65188a6dc5ced5aecbdf8ce42cbe9258395364891da063059422d6000b5ec7d2e281c07cc217c4a45152da97e9c1bcae1f9eb01
7
- data.tar.gz: f6583fd556de633d123e980e13f4410bd828e0e9300e4a7cdb17a3880b6969c1bd40ced5e585cb3de1f90ca8576ba9755c87e0a3aea23f741b1e8db558f813ec
6
+ metadata.gz: e5bd80bb0262db06c49fff2942887dfe0a758f04946a65564a2e80f3b33d2d95b796c3bdb73685a5f1fa49f3e85cdf8a12a4e723d7a08c712dfc494af94f9ad2
7
+ data.tar.gz: 607cfaf5708bb74c11ebe32d4db494329f14b05748d183336e597ffba9581bfb8d48289748fbe2b2d5b076a0097032194d2427063bdc28b8cb3a074fa5f17e9c
data/README.md CHANGED
@@ -39,8 +39,8 @@ This creates a `.git/hooks/commit-msg` script which will automatically check you
39
39
  * **Tense**: Message must use imperative present tense: "Fix bug" and not "Fixed bug" or "Fixes bug."
40
40
  * **Subject Period**: Do not end your subject line with a period.
41
41
  * **Capitalize Subject**: Begin all subject lines with a capital letter.
42
- * **WIP**: Do not commit WIPs to shared branches.
43
42
  * **Frat House**: No frat house commit messages in shared branches.
43
+ * **WIP**: Do not commit WIPs to shared branches (disabled by default)
44
44
 
45
45
  ## Configuration
46
46
 
@@ -61,10 +61,10 @@ Validators/SubjectPeriod:
61
61
  Enabled: true
62
62
  Validators/CapitalizeSubject:
63
63
  Enabled: true
64
- Validators/Wip:
65
- Enabled: true
66
64
  Validators/Frathouse:
67
65
  Enabled: true
66
+ Validators/Wip:
67
+ Enabled: false
68
68
  ```
69
69
 
70
70
  The `Enabled` property accepts multiple formats:
@@ -174,4 +174,6 @@ Author: [Mike Foley](https://github.com/m1foley)
174
174
 
175
175
  Inspiration taken from: [Tim Pope](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html), [Jason Fox](https://gist.github.com/jasonrobertfox/8057124), [Addam Hardy](http://addamhardy.com/blog/2013/06/05/good-commit-messages-and-enforcing-them-with-git-hooks/), [pre-commit](https://github.com/jish/pre-commit)
176
176
 
177
- Similar projects: [gitlint](https://github.com/jorisroovers/gitlint) (written in Python)
177
+ Similar projects:
178
+ - [gitlint](https://github.com/jorisroovers/gitlint) (written in Python)
179
+ - [fit-commit-js](https://www.npmjs.com/package/fit-commit-js) (Node.js package)
@@ -1,3 +1,3 @@
1
1
  module FitCommit
2
- VERSION = "3.5.0"
2
+ VERSION = "3.6.0"
3
3
  end
@@ -10,9 +10,7 @@ Validators/SubjectPeriod:
10
10
  Enabled: true
11
11
  Validators/CapitalizeSubject:
12
12
  Enabled: true
13
- Validators/Wip:
14
- Enabled: true
15
13
  Validators/Frathouse:
16
14
  Enabled: true
17
- Validators/Foobar:
18
- Enabled: true
15
+ Validators/Wip:
16
+ Enabled: false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fit-commit
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Foley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-05 00:00:00.000000000 Z
11
+ date: 2016-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: swearjar
@@ -149,4 +149,3 @@ test_files:
149
149
  - test/unit/validators/tense_test.rb
150
150
  - test/unit/validators/validator_helper.rb
151
151
  - test/unit/validators/wip_test.rb
152
- has_rdoc: