git-branch--stray 1.1.0 → 1.2.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: dd358f7d6dcc8b853965067aef2baf5686af5906
4
- data.tar.gz: 19775be68826ebd2003cb0f00194bf54865c8fb3
3
+ metadata.gz: 10812240d1b566db422d53a3fb276550639a7aa3
4
+ data.tar.gz: b3694ca3a11419afac909c725f142332d1c424ea
5
5
  SHA512:
6
- metadata.gz: d201ec5055943cc18b5a6a798b6b9a756dce3be9ef5f0d48d55216d937ac6105f4274433de86c075b5e11295a594e127d756de3af84942fdedca07a14875e84f
7
- data.tar.gz: 3bf9f3e8c9b493ab920b9d5e18c5bab35d45f771b1022056768c420d324853383c470ce4287bd8eba8801978061a89a5d86a13cf1c39a62c9734e97a48fbde53
6
+ metadata.gz: 526f52a9fd9baba2cab559846a641ae1505c92721a49130202e953d6caa30a93254e667a959e59e232065d7eddd3e21a8092411c9b0999ac6e90f5bb4bdf9b60
7
+ data.tar.gz: 3cb825338019007b243d211865269ea3b7a19638d49e619c968242533aa573ede93cae4a1c0c3d1cd9256901e02349a946ad03543d628708528600a987350082
data/.pryrc CHANGED
@@ -1,2 +1,4 @@
1
- require 'bundler/setup'
1
+ # this loads all of "git-branch--stray"
2
+ lib = File.expand_path('lib', __dir__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
2
4
  require 'git/branch/stray'
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.3.7
1
+ 2.3.8
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018-2018 Peter Vandenberk
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/bin/console CHANGED
@@ -5,3 +5,5 @@ require 'git/branch/stray'
5
5
 
6
6
  require 'pry'
7
7
  Pry.start
8
+
9
+ # That's all Folks!
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
  require 'git/branch/stray/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.name = 'git-branch--stray'
6
+ spec.name = Git::Branch::Stray::NAME
7
7
  spec.version = Git::Branch::Stray::VERSION
8
8
  spec.authors = ['Peter Vandenberk']
9
9
  spec.email = ['pvandenberk@mac.com']
@@ -11,6 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.summary = 'Delete local tracking branches that have been strayed'
12
12
  spec.description = 'Delete local tracking branches that have been strayed'
13
13
  spec.homepage = 'https://github.com/pvdb/git-branch--stray'
14
+ spec.license = 'MIT'
14
15
 
15
16
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
16
17
  `git ls-files -z`
@@ -23,8 +24,8 @@ Gem::Specification.new do |spec|
23
24
 
24
25
  spec.add_dependency 'consenter', '~> 1.0'
25
26
 
26
- spec.add_development_dependency 'bundler', '~> 1.16'
27
- spec.add_development_dependency 'minitest', '~> 5.0'
28
- spec.add_development_dependency 'pry', '~> 0.11'
29
- spec.add_development_dependency 'rake', '~> 10.0'
27
+ spec.add_development_dependency 'bundler'
28
+ spec.add_development_dependency 'pry'
29
+ spec.add_development_dependency 'rake'
30
+ spec.add_development_dependency 'rubocop'
30
31
  end
@@ -1,7 +1,8 @@
1
1
  module Git
2
2
  module Branch
3
3
  module Stray
4
- VERSION = '1.1.0'.freeze
4
+ NAME = 'git-branch--stray'.freeze
5
+ VERSION = '1.2.0'.freeze
5
6
  end
6
7
  end
7
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-branch--stray
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Vandenberk
@@ -28,58 +28,58 @@ dependencies:
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '1.16'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '1.16'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: minitest
42
+ name: pry
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '5.0'
47
+ version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '5.0'
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: pry
56
+ name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '0.11'
61
+ version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '0.11'
68
+ version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: rake
70
+ name: rubocop
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '10.0'
75
+ version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: '10.0'
82
+ version: '0'
83
83
  description: Delete local tracking branches that have been strayed
84
84
  email:
85
85
  - pvandenberk@mac.com
@@ -93,8 +93,8 @@ files:
93
93
  - ".pryrc"
94
94
  - ".rubocop.yml"
95
95
  - ".ruby-version"
96
- - ".travis.yml"
97
96
  - Gemfile
97
+ - LICENSE.txt
98
98
  - README.md
99
99
  - Rakefile
100
100
  - bin/console
@@ -105,7 +105,8 @@ files:
105
105
  - lib/git/branch/stray.rb
106
106
  - lib/git/branch/stray/version.rb
107
107
  homepage: https://github.com/pvdb/git-branch--stray
108
- licenses: []
108
+ licenses:
109
+ - MIT
109
110
  metadata: {}
110
111
  post_install_message:
111
112
  rdoc_options: []
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.5.1
7
- before_install: gem install bundler -v 1.16.6