bundlemate 0.1.0 → 0.1.1

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/History.txt CHANGED
@@ -1,4 +1,9 @@
1
- == 0.0.1 2007-09-03
1
+ == 0.1.1 01-11-2007
2
+
3
+ * 1 minor enhancement:
4
+ * Updated help text with clearer instructions and option details.
5
+
6
+ == 0.0.1 03-09-2007
2
7
 
3
8
  * 1 major enhancement:
4
9
  * Initial release
data/bin/bundlemate CHANGED
@@ -7,7 +7,6 @@ local_libs = [
7
7
  if File.exist?(local_libs.first)
8
8
  local_libs.each { |lib| require lib }
9
9
  else
10
- require 'rubygems'
11
10
  require 'bundlemate'
12
11
  end
13
12
 
data/lib/bundle_mate.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require 'rubygems'
2
+
1
3
  module BundleMate
2
4
  MACROMATES_REPOSITORY = 'http://macromates.com/svn/Bundles/trunk/Bundles/'
3
5
 
@@ -8,7 +10,7 @@ module BundleMate
8
10
  module VERSION #:nodoc:
9
11
  MAJOR = 0
10
12
  MINOR = 1
11
- TINY = 0
13
+ TINY = 1
12
14
 
13
15
  STRING = [MAJOR, MINOR, TINY].join('.')
14
16
  end
@@ -139,16 +139,26 @@ Bundlemate is a command utility for managing TextMate bundles.
139
139
  Available commands:
140
140
  list # List available bundles in the remote repository.
141
141
  info [name] # Display the bundle description.
142
- install [name] # Install bundle [name]
142
+ install [name] # Install bundle [name]. Use --url to specify the exact URL of a bundle.
143
143
  update [name] # Download the latest updates for bundle [name]
144
144
  uninstall [name] # Remove bundle [name] completely
145
145
  update_all # Update all installed bundles
146
146
  help # Displays this help text
147
147
 
148
+ Options:
149
+ -y (--noprompt) # Automatically confirm any prompts.
150
+
148
151
  Examples:
149
- bundlemate install Ruby # install Ruby.tmbundle
150
- bundlemate update Ruby # download the latest Ruby.rmbundle updates
151
- bundlemate unisntall Ruby # remove the bundle completely
152
+ # installing bundles
153
+ bundlemate install Ruby
154
+ bundlemate install --url svn://rubyforge.org/var/svn/rspec/trunk/RSpec.tmbundle
155
+ bundlemate install --url svn://rubyforge.org/var/svn/rspec/trunk/RSpec.tmbundle --revision 1234
156
+
157
+ # update an existing bundle
158
+ bundlemate update Ruby
159
+
160
+ # remove a bundle completely
161
+ bundlemate uninstall Ruby
152
162
 
153
163
  Note:
154
164
  It is not necessary to reload TextMate's bundles manually, bundlemate
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: bundlemate
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.0
6
+ version: 0.1.1
7
7
  date: 2007-11-01 00:00:00 +00:00
8
8
  summary: A command-line TextMate bundle manager.
9
9
  require_paths: