git-semaphore 3.0.0 → 3.1.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: f5f76f2487f427528a0200987155e53304464e5402e15379c038e42bb1048a06
4
- data.tar.gz: cfa81dc4e13c1b33ad0c997060fc5d07d38141dbdef3aa116f141944194111b7
3
+ metadata.gz: 0b8541b0b52267a6afc291b1bd1db9a7903f059a3cda636dc68965d309971ee3
4
+ data.tar.gz: c6c0f5ad2bcd0bf9bca247c3b97d10abb5b82fcbaa47b36848ceb77bf2ddaaa7
5
5
  SHA512:
6
- metadata.gz: 7590f74d4d5ef32d38569aa13c9af475b2bc0e596955b04d558a7f69acae22c78185a374edd58cb4802942e64e053ba9237a24d23404c6b7539cf4967a797abd
7
- data.tar.gz: 023405af11917e711600b888552b1cdcf9cb08bbb70ad3be684588d104893ac491580ea8189ff52974dead1fbf17ff8459a2a59d5d8837b60a9fd3afc1fa3108
6
+ metadata.gz: 8896c8e3ab1047da6855696a2e0926412bbab59d2c2c6a71d15196f7c95750ca94d365916726d89192b22d3ffcd06e19e39e579632c5b75be5e94ed70e0ad468
7
+ data.tar.gz: 162ca5aee8f26ba23e0438af34ee186cf9fe6789028bd9b078fbeffbe125906f0af63a65df0638c6358708043dd4bfec54748fe65b24cd25f5266fd5cffe2773
@@ -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/
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
+
3
5
  # Specify your gem's dependencies in git-semaphore.gemspec
4
6
  gemspec
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-semaphore (3.0.0)
4
+ git-semaphore (3.1.0)
5
5
  faraday (~> 0.15)
6
6
  nitlink (~> 1.1)
7
7
  rugged (~> 0.27)
@@ -14,10 +14,11 @@ GEM
14
14
  coderay (1.1.2)
15
15
  faraday (0.15.4)
16
16
  multipart-post (>= 1.2, < 3)
17
+ interception (0.5)
17
18
  jaro_winkler (1.5.2)
18
19
  method_source (0.9.2)
19
20
  minitest (5.11.3)
20
- multipart-post (2.0.0)
21
+ multipart-post (2.1.1)
21
22
  nitlink (1.1.0)
22
23
  parallel (1.14.0)
23
24
  parser (2.6.0.0)
@@ -26,6 +27,9 @@ GEM
26
27
  pry (0.12.2)
27
28
  coderay (~> 1.1.0)
28
29
  method_source (~> 0.9.0)
30
+ pry-rescue (1.5.0)
31
+ interception (>= 0.5)
32
+ pry (>= 0.12.0)
29
33
  psych (3.1.0)
30
34
  rainbow (3.0.0)
31
35
  rake (12.3.2)
@@ -39,8 +43,8 @@ GEM
39
43
  ruby-progressbar (~> 1.7)
40
44
  unicode-display_width (~> 1.4.0)
41
45
  ruby-progressbar (1.10.0)
42
- rugged (0.28.1)
43
- slop (4.6.2)
46
+ rugged (0.28.2)
47
+ slop (4.7.0)
44
48
  unicode-display_width (1.4.1)
45
49
 
46
50
  PLATFORMS
@@ -51,8 +55,9 @@ DEPENDENCIES
51
55
  git-semaphore!
52
56
  minitest
53
57
  pry
58
+ pry-rescue
54
59
  rake
55
60
  rubocop
56
61
 
57
62
  BUNDLED WITH
58
- 2.0.1
63
+ 2.0.2
@@ -33,6 +33,7 @@ Gem::Specification.new do |spec|
33
33
  spec.add_development_dependency 'bundler'
34
34
  spec.add_development_dependency 'minitest'
35
35
  spec.add_development_dependency 'pry'
36
+ spec.add_development_dependency 'pry-rescue'
36
37
  spec.add_development_dependency 'rake'
37
38
  spec.add_development_dependency 'rubocop'
38
39
  end
@@ -1,7 +1,7 @@
1
1
  module Git
2
2
  module Semaphore
3
3
  NAME = 'git-semaphore'.freeze
4
- VERSION = '3.0.0'.freeze
4
+ VERSION = '3.1.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-semaphore
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.1.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-03-18 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: faraday
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: pry-rescue
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: rake
113
127
  requirement: !ruby/object:Gem::Requirement
@@ -144,11 +158,13 @@ executables:
144
158
  extensions: []
145
159
  extra_rdoc_files: []
146
160
  files:
161
+ - ".gitconform"
147
162
  - ".gitignore"
148
163
  - ".pryrc"
149
164
  - ".rubocop.yml"
150
165
  - ".ruby-version"
151
166
  - ".travis.yml"
167
+ - CODE_OF_CONDUCT.md
152
168
  - Gemfile
153
169
  - Gemfile.lock
154
170
  - LICENSE.txt
@@ -189,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
205
  - !ruby/object:Gem::Version
190
206
  version: '0'
191
207
  requirements: []
192
- rubygems_version: 3.0.2
208
+ rubygems_version: 3.0.4
193
209
  signing_key:
194
210
  specification_version: 4
195
211
  summary: git integration with semaphoreci.com