subwrap 0.3.8 → 0.3.9
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/ProjectInfo.rb +1 -1
- data/Readme +10 -11
- metadata +2 -2
data/ProjectInfo.rb
CHANGED
@@ -5,7 +5,7 @@ module Project
|
|
5
5
|
PrettyName = "Subwrap: Enhanced Subversion Command"
|
6
6
|
Name = "subwrap"
|
7
7
|
RubyForgeName = "subwrap"
|
8
|
-
Version = "0.3.
|
8
|
+
Version = "0.3.9"
|
9
9
|
Specification = Gem::Specification.new do |s|
|
10
10
|
s.name = Project::Name
|
11
11
|
s.summary = "A nifty wrapper command for Subversion's command-line svn client"
|
data/Readme
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
= <i>
|
1
|
+
= <i>Subwrap</i> -- an enhanced +svn+ command
|
2
|
+
link:include/subwrap.jpg
|
2
3
|
|
3
|
-
[<b>Environment</b>:] Command line (text based)
|
4
4
|
[<b>Home page</b>:] http://subwrap.rubyforge.org/
|
5
5
|
[<b>Project site</b>:] http://rubyforge.org/projects/subwrap
|
6
6
|
[<b>Gem install</b>:] <tt>gem install subwrap</tt>
|
@@ -25,31 +25,30 @@ This is a replacement <b><tt>svn</tt> command-line client</b> meant to be used i
|
|
25
25
|
* termios (recommended, but no longer required)
|
26
26
|
* win32console (Windows only, required for colored to work)
|
27
27
|
|
28
|
-
=== Installation
|
28
|
+
=== Installation
|
29
29
|
|
30
|
-
* Install the gem (
|
30
|
+
* Install the gem (once per _system_):
|
31
31
|
|
32
32
|
sudo gem install subwrap --include-dependencies
|
33
33
|
|
34
|
-
|
34
|
+
The command will now be available immediately by typing +subwrap+ instead of +svn+. If you'd like to actually *replace* the standard +svn+ command (that
|
35
35
|
is, if you'd like to be able to run it simply by typing +svn+), then you you will also need to run <tt>sudo _subwrap_post_install</tt>, which will
|
36
36
|
attempt to do the following (or you can do this manually):
|
37
37
|
|
38
|
-
* (
|
38
|
+
* (Linux only:) Make the svn wrapper command *executable*:
|
39
39
|
|
40
40
|
sudo chmod a+x /usr/lib/ruby/gems/1.8/gems/subwrap*/bin/*
|
41
41
|
|
42
|
-
(
|
42
|
+
(Why can't we just set <tt>executables = "svn"</tt> in the gemspec and have it automatically install it to /usr/bin? Because that would cause it to <b>wipe out</b> the existing executable at <tt>/usr/bin/svn</tt>! If you know of a better, more automatic solution to this, please let me know!)
|
43
43
|
|
44
|
-
|
44
|
+
* (Linux only:) Next, you need to add the gem's +bin+ directory to be added to the <b><i>front</i></b> of your path (once per _user_). You may run <tt>_subwrap_post_install</tt> and let it attempt to do this for you, or you can do it manually:
|
45
45
|
|
46
|
-
*Important*: You need the gem's +bin+ directory to be added to the <b><i>front</i></b> of your path. You may run <tt>_subwrap_post_install</tt>, which will attempt to do this for you, or you can do it manually:
|
47
46
|
|
48
|
-
*
|
47
|
+
* Add a <tt>PATH=</tt> command to your <tt>~/.bash_profile</tt> (or equivalent). For example:
|
49
48
|
|
50
49
|
export PATH=`ls -dt --color=never /usr/lib/ruby/gems/1.8/gems/subwrap* | head -n1`/bin:$PATH"
|
51
50
|
|
52
|
-
(You will need to source your <tt>~/.bash_profile</tt> after modifying it in order for bash to detect the new path to the svn command.)
|
51
|
+
(You will need to source your <tt>~/.bash_profile</tt> after modifying it in order for bash to detect the new path to the svn command.)
|
53
52
|
|
54
53
|
* (Windows only:) Make sure <tt>C:\ruby\bin</tt> (or wherever rubygems installs executables for gems) appears in the path before
|
55
54
|
<tt>C:\Program Files\Subversion\bin</tt> (or wherever your svn binary is).
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: subwrap
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.3.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.3.9
|
7
|
+
date: 2007-08-08 00:00:00 -07:00
|
8
8
|
summary: A nifty wrapper command for Subversion's command-line svn client
|
9
9
|
require_paths:
|
10
10
|
- lib
|