subwrap 0.3.5 → 0.3.6
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 +1 -1
- data/lib/subwrap/svn_command.rb +1 -1
- metadata +1 -1
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.6"
|
|
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
|
@@ -45,7 +45,7 @@ attempt to do the following (or you can do this manually):
|
|
|
45
45
|
|
|
46
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
47
|
|
|
48
|
-
* (
|
|
48
|
+
* (POSIX only:) Add a <tt>PATH=</tt> command to your <tt>~/.bash_profile</tt> (or equivalent). For example:
|
|
49
49
|
|
|
50
50
|
export PATH=`ls -dt --color=never /usr/lib/ruby/gems/1.8/gems/subwrap* | head -n1`/bin:$PATH"
|
|
51
51
|
|
data/lib/subwrap/svn_command.rb
CHANGED
|
@@ -536,7 +536,7 @@ module Subversion
|
|
|
536
536
|
|
|
537
537
|
when nil
|
|
538
538
|
puts "You are using " +
|
|
539
|
-
's'.green.bold + '
|
|
539
|
+
's'.green.bold + 'u'.cyan.bold + 'b'.magenta.bold + 'w'.white.bold + 'r'.red.bold + 'a'.blue.bold + 'p'.yellow.bold + ' version ' + Project::Version
|
|
540
540
|
", a colorful, useful replacement/wrapper for the standard svn command."
|
|
541
541
|
puts "subwrap is installed at: " + $0.bold
|
|
542
542
|
puts "You may bypass this wrapper by using the full path to svn: " + Subversion.executable.bold
|
metadata
CHANGED