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 +6 -1
- data/bin/bundlemate +0 -1
- data/lib/bundle_mate.rb +3 -1
- data/lib/bundle_mate/application.rb +14 -4
- metadata +1 -1
data/History.txt
CHANGED
data/bin/bundlemate
CHANGED
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 =
|
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
|
-
|
150
|
-
bundlemate
|
151
|
-
bundlemate
|
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
|