git-branch--stray 1.5.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitconform +9 -0
- data/.gitignore +1 -1
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile.lock +51 -0
- data/Rakefile +6 -1
- data/bin/setup +2 -0
- data/git-branch--stray.gemspec +1 -0
- data/lib/git/branch/stray/version.rb +1 -1
- metadata +20 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14244864681944cc4d3e527074d75f5a1a962492c0893039f99262cb3f95a14d
|
4
|
+
data.tar.gz: 8d88fa776084940b16c047ae4e93cb5d7ed981455403742dc4394c1d21c51a14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5000527678d208afa1acd04a3316889d77549389fcbc0f96d2dd3c70be05693605d57d65571c1cc3bd82b737e68f6140d7b569cbf5119cb4c37585c1471403f7
|
7
|
+
data.tar.gz: 3ee163d8012c5801c73ea16d9b04c451d7884b8f844ef60c5640756b062195f9302fe4153f7de714b99eaa87d06f3a795802c57ea5f5d86f16f53bca1b63c0df
|
data/.gitconform
ADDED
@@ -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
|
data/.gitignore
CHANGED
data/CODE_OF_CONDUCT.md
ADDED
@@ -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.lock
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
git-branch--stray (1.6.0)
|
5
|
+
consenter (~> 1.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
ast (2.4.0)
|
11
|
+
coderay (1.1.2)
|
12
|
+
consenter (1.0.5)
|
13
|
+
interception (0.5)
|
14
|
+
jaro_winkler (1.5.3)
|
15
|
+
method_source (0.9.2)
|
16
|
+
minitest (5.11.3)
|
17
|
+
parallel (1.17.0)
|
18
|
+
parser (2.6.3.0)
|
19
|
+
ast (~> 2.4.0)
|
20
|
+
pry (0.12.2)
|
21
|
+
coderay (~> 1.1.0)
|
22
|
+
method_source (~> 0.9.0)
|
23
|
+
pry-rescue (1.5.0)
|
24
|
+
interception (>= 0.5)
|
25
|
+
pry (>= 0.12.0)
|
26
|
+
rainbow (3.0.0)
|
27
|
+
rake (12.3.2)
|
28
|
+
rubocop (0.72.0)
|
29
|
+
jaro_winkler (~> 1.5.1)
|
30
|
+
parallel (~> 1.10)
|
31
|
+
parser (>= 2.6)
|
32
|
+
rainbow (>= 2.2.2, < 4.0)
|
33
|
+
ruby-progressbar (~> 1.7)
|
34
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
35
|
+
ruby-progressbar (1.10.1)
|
36
|
+
unicode-display_width (1.6.0)
|
37
|
+
|
38
|
+
PLATFORMS
|
39
|
+
ruby
|
40
|
+
|
41
|
+
DEPENDENCIES
|
42
|
+
bundler
|
43
|
+
git-branch--stray!
|
44
|
+
minitest
|
45
|
+
pry
|
46
|
+
pry-rescue
|
47
|
+
rake
|
48
|
+
rubocop
|
49
|
+
|
50
|
+
BUNDLED WITH
|
51
|
+
2.0.2
|
data/Rakefile
CHANGED
@@ -27,7 +27,12 @@ task :default => [:version, :rubocop, :test]
|
|
27
27
|
|
28
28
|
task :documentation
|
29
29
|
|
30
|
-
|
30
|
+
task :ready => :documentation do
|
31
|
+
sh('bundle --quiet') # regenerate Gemfile.lock e.g. if version has changed
|
32
|
+
sh('git diff-index --quiet HEAD --') # https://stackoverflow.com/a/2659808
|
33
|
+
end
|
34
|
+
|
35
|
+
Rake::Task['build'].enhance([:default, :ready])
|
31
36
|
|
32
37
|
# rubocop:enable Style/HashSyntax
|
33
38
|
# rubocop:enable Style/SymbolArray
|
data/bin/setup
CHANGED
data/git-branch--stray.gemspec
CHANGED
@@ -30,6 +30,7 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.add_development_dependency 'bundler'
|
31
31
|
spec.add_development_dependency 'minitest'
|
32
32
|
spec.add_development_dependency 'pry'
|
33
|
+
spec.add_development_dependency 'pry-rescue'
|
33
34
|
spec.add_development_dependency 'rake'
|
34
35
|
spec.add_development_dependency 'rubocop'
|
35
36
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-branch--stray
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.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-
|
11
|
+
date: 2019-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: consenter
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry-rescue
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: rake
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -104,11 +118,14 @@ executables:
|
|
104
118
|
extensions: []
|
105
119
|
extra_rdoc_files: []
|
106
120
|
files:
|
121
|
+
- ".gitconform"
|
107
122
|
- ".gitignore"
|
108
123
|
- ".pryrc"
|
109
124
|
- ".rubocop.yml"
|
110
125
|
- ".ruby-version"
|
126
|
+
- CODE_OF_CONDUCT.md
|
111
127
|
- Gemfile
|
128
|
+
- Gemfile.lock
|
112
129
|
- LICENSE.txt
|
113
130
|
- README.md
|
114
131
|
- Rakefile
|
@@ -144,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
161
|
- !ruby/object:Gem::Version
|
145
162
|
version: '0'
|
146
163
|
requirements: []
|
147
|
-
rubygems_version: 3.0.
|
164
|
+
rubygems_version: 3.0.4
|
148
165
|
signing_key:
|
149
166
|
specification_version: 4
|
150
167
|
summary: Delete stray local remote-tracking branches
|