logaan-igit 0.0.2 → 0.0.3
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.
- data/README.rdoc +37 -0
- data/Rakefile +14 -0
- data/igit.gemspec +18 -0
- metadata +5 -2
data/README.rdoc
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
== igit
|
|
2
|
+
|
|
3
|
+
by Colin Campbell-McPherson (colin@logaan.net)
|
|
4
|
+
|
|
5
|
+
http://github.com/logaan/igit
|
|
6
|
+
|
|
7
|
+
== DESCRIPTION:
|
|
8
|
+
|
|
9
|
+
igit provides a simple interactive git console with branch name tab completion. It aims to cut
|
|
10
|
+
down on the use of the git prefix to commands when performing intense git tasks.
|
|
11
|
+
|
|
12
|
+
== USAGE
|
|
13
|
+
|
|
14
|
+
Open up an new instance with
|
|
15
|
+
igit
|
|
16
|
+
or
|
|
17
|
+
igit <path>
|
|
18
|
+
|
|
19
|
+
When inside igit you will see a prompt with the current working directory. From here you may run
|
|
20
|
+
any git command without prefixing it with the word git (eg. <tt>push origin master</tt> rather than
|
|
21
|
+
<tt>git-push origin master</tt>).
|
|
22
|
+
|
|
23
|
+
The working directory is set to the <tt><path></tt> passed to get when loading it (defaults to '.').
|
|
24
|
+
It may be changed by issuing a <tt>cd</tt> command (eg. <tt>cd ../tests</tt>) from within igit.
|
|
25
|
+
|
|
26
|
+
By typing part of a branch name and hitting tab you will be provided with name completion or a list
|
|
27
|
+
of potential branches.
|
|
28
|
+
|
|
29
|
+
== CONTRIBUTE:
|
|
30
|
+
|
|
31
|
+
Latest code is available at http://github.com/logaan/igit
|
|
32
|
+
|
|
33
|
+
The 'master' branch can be cloned with:
|
|
34
|
+
|
|
35
|
+
$ git clone git://github.com/logaan/igit.git
|
|
36
|
+
|
|
37
|
+
I'm open to accepting any contributions, just contact me through github.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'pp'
|
|
3
|
+
require 'rake/clean'
|
|
4
|
+
require 'rake/gempackagetask'
|
|
5
|
+
|
|
6
|
+
desc "Default Task"
|
|
7
|
+
task :default => :gem
|
|
8
|
+
|
|
9
|
+
spec = eval(File.read("igit.gemspec"))
|
|
10
|
+
|
|
11
|
+
Rake::GemPackageTask.new(spec) do |pkg|
|
|
12
|
+
pkg.need_zip = true
|
|
13
|
+
pkg.need_tar = true
|
|
14
|
+
end
|
data/igit.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = "igit"
|
|
3
|
+
s.version = "0.0.3"
|
|
4
|
+
s.date = "2008-06-03"
|
|
5
|
+
s.summary = "Simple ineractive git console."
|
|
6
|
+
s.email = "colin@logaan.net"
|
|
7
|
+
s.homepage = "http://github.com/logaan/igit"
|
|
8
|
+
s.author = "Colin Campbell-McPherson"
|
|
9
|
+
|
|
10
|
+
s.description = <<-END
|
|
11
|
+
Will install the igit command. This opens up a console where
|
|
12
|
+
you may call any git command without the need for the git
|
|
13
|
+
prefix. Also offers tab completion of branches for easy switching.
|
|
14
|
+
END
|
|
15
|
+
|
|
16
|
+
s.files = ["igit.gemspec", "Rakefile", "README.rdoc", "bin/igit"]
|
|
17
|
+
s.executables = ["igit"]
|
|
18
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logaan-igit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Colin Campbell-McPherson
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-06-
|
|
12
|
+
date: 2008-06-03 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -22,6 +22,9 @@ extensions: []
|
|
|
22
22
|
extra_rdoc_files: []
|
|
23
23
|
|
|
24
24
|
files:
|
|
25
|
+
- igit.gemspec
|
|
26
|
+
- Rakefile
|
|
27
|
+
- README.rdoc
|
|
25
28
|
- bin/igit
|
|
26
29
|
has_rdoc: false
|
|
27
30
|
homepage: http://github.com/logaan/igit
|