git_selector 0.1.1 → 0.1.2
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 +4 -4
- data/git_selector.gemspec +2 -2
- data/lib/git_selector/version.rb +1 -1
- metadata +3 -7
- data/bin/gits_console +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9637fdb763424400471ece3e640cfcb9434741203d3ab30ab9fac13a261dc8ae
|
4
|
+
data.tar.gz: c270f071baf0821490d043dd36d18ae201aed817dbd36019126af61cbf00de05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00fad0ef8fe939395a1ae336fe4d170f5c41cbb61adeecccf91707901d37437a13266e90eb0a0a36e0f9afaf0441dd977cbaf8b446311de88ae0245b891779eb
|
7
|
+
data.tar.gz: c207cd6a8a502472538f7b7a242ede0cf203d5f2cff4d95785a2250fb29dee4977f8094d65388704f6043d5c2c5a6439f1d32b7e4a8957757e854081f9da1c55
|
data/git_selector.gemspec
CHANGED
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
24
24
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
25
|
end
|
26
|
-
spec.bindir = "bin"
|
27
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
26
|
+
spec.bindir = "bin/release"
|
27
|
+
spec.executables = spec.files.grep(%r{^bin/release}) { |f| File.basename(f) }
|
28
28
|
spec.require_paths = ["lib"]
|
29
29
|
|
30
30
|
spec.add_dependency 'git'
|
data/lib/git_selector/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_selector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tatsuya Suzuki
|
8
8
|
autorequire:
|
9
|
-
bindir: bin
|
9
|
+
bindir: bin/release
|
10
10
|
cert_chain: []
|
11
11
|
date: 2023-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -55,10 +55,7 @@ dependencies:
|
|
55
55
|
description: A CLI to let you interactive select tag and branch
|
56
56
|
email:
|
57
57
|
- ttsysuzuki@googlemail.com
|
58
|
-
executables:
|
59
|
-
- gits
|
60
|
-
- gits_console
|
61
|
-
- setup
|
58
|
+
executables: []
|
62
59
|
extensions: []
|
63
60
|
extra_rdoc_files: []
|
64
61
|
files:
|
@@ -72,7 +69,6 @@ files:
|
|
72
69
|
- README.md
|
73
70
|
- Rakefile
|
74
71
|
- bin/gits
|
75
|
-
- bin/gits_console
|
76
72
|
- bin/setup
|
77
73
|
- git_selector.gemspec
|
78
74
|
- lib/git_selector.rb
|
data/bin/gits_console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "git_selector"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|