git-conform 1.2.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e6e1ebbec3350945a83b600a63dbd754a4f8ac2876336109abcd149006bd403
4
- data.tar.gz: 33279101c619baee51297f9a6bb43924e48f34ad30cb339222e987ac98bf8824
3
+ metadata.gz: 794753b551fb257092207daf99071ae331f2ac2888e01fcb56bfd8e40893c16f
4
+ data.tar.gz: 5b1e6594497c33d74f1287f16641bde4baf86046f6c61b38caf417f83c6c4049
5
5
  SHA512:
6
- metadata.gz: 5cbe2d0f9f0e41fbbe864bf3006a8fa69073ac54162b550d3a2c542b9d951694f180043fedb7ee07c7dd51026f361642c630059eeb816f215c7783a88f1697c2
7
- data.tar.gz: 5c1f9888c15768dee527bd2006db478b75d9f559c8f719d01e5de40960a518d0dc681975efd71578e93463eb82a9482078d61d4582ce472685059c5de9ff0211
6
+ metadata.gz: f371865c3408b7dde5d3244446056856845601670fa3c2dfe2f0b566935137e221e6538a0de8acf7b5adc5d0a7ca4e5a4103d860b559b8cac4f6a130edd3051b
7
+ data.tar.gz: 58a395b20f5232ad1624fd36f41c56ebc7f2b744845c517648b0efefab727f2ef7f210aad263596c93dafca4151ecfb278e14f53818f1c0c8ca9be8aff0dccca
@@ -0,0 +1,9 @@
1
+ [git "conform"]
2
+ checker = CarriageReturnCharacterChecker
3
+ checker = FileNotEmptyChecker
4
+ checker = LowercaseFilenameChecker
5
+ checker = NonAsciiCharacterChecker
6
+ checker = NonAsciiFilenameChecker
7
+ checker = TabCharacterChecker
8
+ checker = TrailingWhitespaceChecker
9
+ checker = WhitespaceFilenameChecker
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at peter.vandenberk@simplybusiness.co.uk. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-conform (1.2.1)
4
+ git-conform (1.3.0)
5
5
  rugged (~> 0.27)
6
6
  slop (~> 4.6)
7
7
 
@@ -52,4 +52,4 @@ DEPENDENCIES
52
52
  rubocop
53
53
 
54
54
  BUNDLED WITH
55
- 1.17.3
55
+ 2.0.2
@@ -1,7 +1,7 @@
1
1
  module Git
2
2
  module Conform
3
3
  NAME = 'git-conform'.freeze
4
- VERSION = '1.2.1'.freeze
4
+ VERSION = '1.3.0'.freeze
5
5
 
6
6
  def self.version
7
7
  "#{NAME} v#{VERSION}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-conform
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Vandenberk
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-07-05 00:00:00.000000000 Z
11
+ date: 2019-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rugged
@@ -130,10 +130,12 @@ executables:
130
130
  extensions: []
131
131
  extra_rdoc_files: []
132
132
  files:
133
+ - ".gitconform"
133
134
  - ".gitignore"
134
135
  - ".pryrc"
135
136
  - ".rubocop.yml"
136
137
  - ".ruby-version"
138
+ - CODE_OF_CONDUCT.md
137
139
  - Gemfile
138
140
  - Gemfile.lock
139
141
  - LICENSE.txt
@@ -180,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
182
  - !ruby/object:Gem::Version
181
183
  version: '0'
182
184
  requirements: []
183
- rubygems_version: 3.0.2
185
+ rubygems_version: 3.0.4
184
186
  signing_key:
185
187
  specification_version: 4
186
188
  summary: Conformity checking for git repositories