git-trim 0.1.1 → 0.1.3

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: b0e1c14fa9ec506cd48daf024f6dd38e7461a09ef6f5ae3ceb6a075b37129a9e
4
- data.tar.gz: 6db6dbb4ab2ed61c7b596b721306097ba188a07453410b91465ccdc6843c9db8
3
+ metadata.gz: 4c941e5077e893642ba38fbd33d94f9c8fbef9c8590b8b9107457d7027da16ea
4
+ data.tar.gz: 50297be5101150a1898acef6b2a09da3d82b03878765cf09d36fa0fc6fe769ae
5
5
  SHA512:
6
- metadata.gz: 854ef54bcfe17a55d1886e591b56fe1d4c854c059cd83cce0c16180760e33797eb1e0796abdc6ec114f5ee606c4e7883b1bba3fd05c7561f99a847defbd7676d
7
- data.tar.gz: 22c1212df9d26f4ca4c2ac42c490a45f4b800dee4c8be6f8ae4015219cba342616b4276ec83885ccb03a462ad2ad00ac648a1c9062ac66b6ff1e4ae5174dba54
6
+ metadata.gz: e2befed7aefe3649a8fa13b0fd7afbebf630c29f2a788370b0211f3291740ce230cf46f9bd14c42df862d73f32b5d951134c29211da85e1a6b86e57b72f078d4
7
+ data.tar.gz: 56e28769e4b6554df8c6058d728678600b03082415d8c2043075a4abea758a36df0bb0f02c6d4d676c6ce71c7ea4e4a0ee2c621e6dd2f4bd76db0e58e781fb94
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+ .ruby-version
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-trim (0.1.1)
4
+ git-trim (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  diff-lcs (1.3)
10
- rake (10.5.0)
10
+ rake (13.0.1)
11
11
  rspec (3.7.0)
12
12
  rspec-core (~> 3.7.0)
13
13
  rspec-expectations (~> 3.7.0)
@@ -28,8 +28,8 @@ PLATFORMS
28
28
  DEPENDENCIES
29
29
  bundler (~> 1.16)
30
30
  git-trim!
31
- rake (~> 10.0)
31
+ rake (~> 13.0)
32
32
  rspec (~> 3.0)
33
33
 
34
34
  BUNDLED WITH
35
- 1.16.2
35
+ 1.17.3
data/README.md CHANGED
@@ -22,12 +22,12 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- You can call `git trim` and it will remove any branch that isn't currently merged into the current branch that isn't also in the `.git-protected-branches` file. It will not remove the master branch.
25
+ You can call `git trim` and it will remove any branch that isn't currently merged into the current branch that isn't also in the `.git-protected-branches` file. It will not remove the main branch.
26
26
 
27
27
  The `.git-protected-branches` file can reside in the current directory or any parent directory. Branch names are each listed on a line in the file. For example:
28
28
 
29
29
  ```
30
- master
30
+ main
31
31
  staging
32
32
  production
33
33
  ```
@@ -42,4 +42,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
42
42
 
43
43
  ## Code of Conduct
44
44
 
45
- Everyone interacting in the Git::Trim project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/git-trim/blob/master/CODE_OF_CONDUCT.md).
45
+ Everyone interacting in the Git::Trim project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/git-trim/blob/main/CODE_OF_CONDUCT.md).
data/git-trim.gemspec CHANGED
@@ -24,6 +24,6 @@ Gem::Specification.new do |spec|
24
24
  spec.require_paths = ["lib", "bin"]
25
25
 
26
26
  spec.add_development_dependency "bundler", "~> 1.16"
27
- spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rake", "~> 13.0"
28
28
  spec.add_development_dependency "rspec", "~> 3.0"
29
29
  end
@@ -1,3 +1,3 @@
1
1
  class GitTrim
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.3"
3
3
  end
data/lib/git-trim.rb CHANGED
@@ -4,13 +4,13 @@ class GitTrim
4
4
  def run(argv=nil)
5
5
  %x{git fetch -ap}
6
6
 
7
- if File.exists?(".git-protected-branches")
7
+ if File.exist?(".git-protected-branches")
8
8
  protected_branches = File.read(".git-protected-branches").split("\n")
9
9
  end
10
10
  protected_branches ||= []
11
- protected_branches << "master"
11
+ protected_branches << "main"
12
12
 
13
- branches = %x{git branch --merged master}.split("\n").collect {|b| b.gsub('*', '').strip}
13
+ branches = %x{git branch --merged main}.split("\n").collect {|b| b.gsub('*', '').strip}
14
14
  branches -= protected_branches
15
15
 
16
16
  branches.each do |branch|
@@ -20,7 +20,7 @@ class GitTrim
20
20
 
21
21
  def find_file(filename, directory=Dir.pwd)
22
22
  local_filename = File.expand_path(filename, directory)
23
- if File.exists?(local_filename)
23
+ if File.exist?(local_filename)
24
24
  return local_filename
25
25
  elsif directory == "/"
26
26
  return nil
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-trim
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Petersen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-21 00:00:00.000000000 Z
11
+ date: 2023-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
33
+ version: '13.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: '10.0'
40
+ version: '13.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -78,7 +78,7 @@ homepage: https://github.com/assaydepot/git-trim
78
78
  licenses:
79
79
  - MIT
80
80
  metadata: {}
81
- post_install_message:
81
+ post_install_message:
82
82
  rdoc_options: []
83
83
  require_paths:
84
84
  - lib
@@ -94,9 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  requirements: []
97
- rubyforge_project:
98
- rubygems_version: 2.7.6
99
- signing_key:
97
+ rubygems_version: 3.4.10
98
+ signing_key:
100
99
  specification_version: 4
101
100
  summary: A script to remove all merged branches that aren't protected.
102
101
  test_files: []