git_curate 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/tests.yml +56 -0
- data/CHANGELOG.md +6 -0
- data/README.md +11 -2
- data/VERSION +1 -1
- data/git_curate.gemspec +3 -3
- data/lib/git_curate/version.rb +1 -1
- metadata +25 -25
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50c509c86ea95a040e7585fe963ddf1dcc393a5119ca88b13f0b80979e8cd228
|
4
|
+
data.tar.gz: c5d43923dbd54b153d087680f25e8af9b9428f63fce7c72a6371d9b30a9ae080
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c73b1abed7812ef99ca538d6d68946feda57320f0b4ee37885bd083b00ea8e675d6aa0c0a696dff6ffa881fa8fc9d7758c6e4ce73cb0ad4aeea5c9c5435e5b9d
|
7
|
+
data.tar.gz: 36c31763289bb4a50de7bb585d32308ffab6593a0116fce702578deddd8f8ea6e3268ae4dbd71d7a97727edf977a4d584e9f042a80ff5b57ec678c0c8b32f3e1
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: Tests
|
9
|
+
|
10
|
+
on:
|
11
|
+
push:
|
12
|
+
branches: [master]
|
13
|
+
pull_request:
|
14
|
+
branches: [master]
|
15
|
+
|
16
|
+
jobs:
|
17
|
+
test:
|
18
|
+
runs-on: ubuntu-latest
|
19
|
+
strategy:
|
20
|
+
matrix:
|
21
|
+
ruby-version: [
|
22
|
+
'2.4.10',
|
23
|
+
'2.5.9',
|
24
|
+
'2.6.10',
|
25
|
+
'2.7.6',
|
26
|
+
'3.0.4',
|
27
|
+
'3.1.2',
|
28
|
+
]
|
29
|
+
steps:
|
30
|
+
- uses: actions/checkout@v2
|
31
|
+
- name: Set up Ruby
|
32
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
33
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
34
|
+
uses: ruby/setup-ruby@v1 # Was: uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
35
|
+
with:
|
36
|
+
ruby-version: ${{ matrix.ruby-version }}
|
37
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
38
|
+
- name: Run tests
|
39
|
+
run: bundle exec rspec
|
40
|
+
- name: Report to Coveralls
|
41
|
+
uses: coverallsapp/github-action@v1.1.2
|
42
|
+
with:
|
43
|
+
github-token: ${{ secrets.github_token }}
|
44
|
+
flag-name: test-${{ matrix.ruby }}-${{ matrix.gemfile }}
|
45
|
+
parallel: true
|
46
|
+
|
47
|
+
finish:
|
48
|
+
needs: test
|
49
|
+
runs-on: ubuntu-latest
|
50
|
+
steps:
|
51
|
+
|
52
|
+
- name: Report completion to Coveralls
|
53
|
+
uses: coverallsapp/github-action@v1.1.2
|
54
|
+
with:
|
55
|
+
github-token: ${{ secrets.github_token }}
|
56
|
+
parallel-finished: truec
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -40,6 +40,15 @@ gem install git_curate
|
|
40
40
|
|
41
41
|
to install the executable.
|
42
42
|
|
43
|
+
Note `git_curate` uses the [rugged](https://github.com/libgit2/rugged) library, which comes with a
|
44
|
+
native C extension, `libgit2`. Installation via `gem install git_curate` will trigger this extension
|
45
|
+
to be compiled; this may take a few minutes, depending on your machine.
|
46
|
+
|
47
|
+
If you receive an error like `ERROR: Failed to build gem native extension`, it’s probably because
|
48
|
+
your system lacks certain prerequisites needed for building `libgit2`, for example `cmake`. To fix this,
|
49
|
+
first follow the [installation instructions for rugged](https://github.com/libgit2/rugged#install); then
|
50
|
+
run `gem install git_curate` again.
|
51
|
+
|
43
52
|
## Usage
|
44
53
|
|
45
54
|
From within a git repo, run:
|
@@ -80,11 +89,11 @@ To run the test suite, run `bundle exec rake spec`. For a list of other Rake tas
|
|
80
89
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
81
90
|
|
82
91
|
[Gem Version]: https://rubygems.org/gems/git_curate
|
83
|
-
[Build Status]: https://
|
92
|
+
[Build Status]: https://github.com/matt-harvey/git_curate/actions/workflows/tests.yml
|
84
93
|
[Coverage Status]: https://coveralls.io/github/matt-harvey/git_curate
|
85
94
|
[Awesome Ruby]: https://awesome-ruby.com/#-git-tools
|
86
95
|
|
87
96
|
[GV img]: https://img.shields.io/gem/v/git_curate.svg
|
88
|
-
[BS img]: https://
|
97
|
+
[BS img]: https://github.com/matt-harvey/git_curate/actions/workflows/tests.yml/badge.svg
|
89
98
|
[CS img]: https://img.shields.io/coveralls/matt-harvey/git_curate.svg
|
90
99
|
[AR img]: https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.1
|
data/git_curate.gemspec
CHANGED
@@ -29,14 +29,14 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.require_paths = ["lib"]
|
30
30
|
|
31
31
|
spec.add_runtime_dependency "highline", "2.0.3"
|
32
|
-
spec.add_runtime_dependency "rugged", "1.
|
33
|
-
spec.add_runtime_dependency "tabulo", "2.
|
32
|
+
spec.add_runtime_dependency "rugged", "1.4.3"
|
33
|
+
spec.add_runtime_dependency "tabulo", "2.8.0"
|
34
34
|
spec.add_runtime_dependency "tty-screen", "0.8.1"
|
35
35
|
|
36
36
|
spec.add_development_dependency "bundler"
|
37
|
-
spec.add_development_dependency "coveralls"
|
38
37
|
spec.add_development_dependency "rake", "~> 13.0"
|
39
38
|
spec.add_development_dependency "rake-version", "~> 1.0"
|
40
39
|
spec.add_development_dependency "rspec", "~> 3.9"
|
41
40
|
spec.add_development_dependency "simplecov"
|
41
|
+
spec.add_development_dependency "simplecov-lcov"
|
42
42
|
end
|
data/lib/git_curate/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_curate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Harvey
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: highline
|
@@ -30,28 +30,28 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.4.3
|
34
34
|
type: :runtime
|
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.
|
40
|
+
version: 1.4.3
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: tabulo
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 2.
|
47
|
+
version: 2.8.0
|
48
48
|
type: :runtime
|
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: 2.
|
54
|
+
version: 2.8.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: tty-screen
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,20 +80,6 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: coveralls
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
83
|
- !ruby/object:Gem::Dependency
|
98
84
|
name: rake
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -150,6 +136,20 @@ dependencies:
|
|
150
136
|
- - ">="
|
151
137
|
- !ruby/object:Gem::Version
|
152
138
|
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: simplecov-lcov
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
153
|
description: Step through local git branches from the command line, keeping or deleting
|
154
154
|
each.
|
155
155
|
email:
|
@@ -159,9 +159,9 @@ executables:
|
|
159
159
|
extensions: []
|
160
160
|
extra_rdoc_files: []
|
161
161
|
files:
|
162
|
+
- ".github/workflows/tests.yml"
|
162
163
|
- ".gitignore"
|
163
164
|
- ".rspec"
|
164
|
-
- ".travis.yml"
|
165
165
|
- CHANGELOG.md
|
166
166
|
- Gemfile
|
167
167
|
- LICENSE.txt
|
@@ -189,7 +189,7 @@ licenses:
|
|
189
189
|
metadata:
|
190
190
|
source_code_uri: https://github.com/matt-harvey/git_curate
|
191
191
|
changelog_uri: https://raw.githubusercontent.com/matt-harvey/git_curate/master/CHANGELOG.md
|
192
|
-
post_install_message:
|
192
|
+
post_install_message:
|
193
193
|
rdoc_options: []
|
194
194
|
require_paths:
|
195
195
|
- lib
|
@@ -204,8 +204,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
204
|
- !ruby/object:Gem::Version
|
205
205
|
version: '0'
|
206
206
|
requirements: []
|
207
|
-
rubygems_version: 3.
|
208
|
-
signing_key:
|
207
|
+
rubygems_version: 3.2.3
|
208
|
+
signing_key:
|
209
209
|
specification_version: 4
|
210
210
|
summary: Simple git branch curation tool
|
211
211
|
test_files: []
|