ddollar-textmate 1.0.0 → 1.0.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/README.markdown CHANGED
@@ -5,6 +5,7 @@ A binary that provides package management for TextMate.
5
5
  # Example
6
6
 
7
7
  $ textmate install javascript
8
+
8
9
  Please select a bundle from the following list:
9
10
 
10
11
  Github
@@ -57,12 +58,9 @@ List all of the bundles that are installed on the local system, optionally filte
57
58
 
58
59
  ## Installing new bundles
59
60
 
60
- `textmate install NAME [SOURCE]`
61
-
62
- Installs a bundle from the remote repository. SOURCE filters known remote bundle locations.
63
- For example, if you want to install the "Ruby on Rails" bundle off GitHub, you'd type the following:
61
+ `textmate install NAME`
64
62
 
65
- `textmate install "Ruby on Rails" GitHub`
63
+ Installs a bundle from a remote repository.
66
64
 
67
65
  Available remote bundle locations are:
68
66
  * Macromates Trunk
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
data/bin/textmate CHANGED
@@ -17,7 +17,7 @@ class TextmateInstaller < Thor
17
17
  display_hash local.bundles(search)
18
18
  end
19
19
 
20
- desc "install NAME [SOURCE]", "install a bundle"
20
+ desc "install NAME", "install a bundle"
21
21
  def install(bundle)
22
22
  remotes = remote.bundles(bundle)
23
23
 
data/textmate.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{textmate}
8
- s.version = "1.0.0"
8
+ s.version = "1.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["David Dollar"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ddollar-textmate
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Dollar