ddollar-textmate 1.0.2 → 1.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.markdown +4 -0
- data/VERSION +1 -1
- data/bin/textmate +1 -1
- data/lib/textmate/source/github.rb +1 -1
- data/textmate.gemspec +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.3
|
data/bin/textmate
CHANGED
@@ -69,7 +69,7 @@ def display_hash(hash)
|
|
69
69
|
end
|
70
70
|
|
71
71
|
def select_remote(remotes)
|
72
|
-
puts "Please select a bundle from the following list:"
|
72
|
+
puts "Please select a bundle from the following list: (CTRL-C to exit)"
|
73
73
|
puts
|
74
74
|
bundle_index = {}
|
75
75
|
remotes.keys.sort.inject(0) do |index, remote|
|
@@ -35,7 +35,7 @@ private ######################################################################
|
|
35
35
|
end
|
36
36
|
|
37
37
|
def select_repository(repositories)
|
38
|
-
puts "Please select a repository from the following list:"
|
38
|
+
puts "Please select a repository from the following list: (CTRL-C to exit)"
|
39
39
|
puts
|
40
40
|
repository_index = {}
|
41
41
|
repositories.inject(0) do |index, repository|
|
data/textmate.gemspec
CHANGED