public
Fork of wycats/textmate
Description: Command-line package manager for textmate. Like rubygems for TextMate Bundles
Homepage: http://www.yehudakatz.com
Clone URL: git://github.com/subtleGradient/textmate.git
Update Gemspec so Rubygems no longer complains that 'lib' is missing when 
generating the docs
cypher (author)
Wed May 28 01:01:36 -0700 2008
commit  ddd1d05f1b31caa377503f454f97d8442446976d
tree    92628f8acf67dbe14e072db65ebc9806f7a23fd5
parent  40bb3fed558dfd4ff7e1087874316d5efb874e5e
...
23
24
25
26
 
27
28
 
29
30
31
...
23
24
25
 
26
27
 
28
29
30
31
0
@@ -23,9 +23,9 @@ spec = Gem::Specification.new do |s|
0
   
0
   s.add_dependency "thor", ">= 0.9.2"
0
     
0
- s.require_path = 'lib'
0
+ s.require_path = 'bin' # Yes, it's a hack, but otherwise gem complains on install
0
   s.autorequire = GEM
0
- s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("{bin,lib,specs}/**/*")
0
+ s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("{bin,specs}/**/*")
0
   s.bindir = "bin"
0
   s.executables = %w( textmate )
0
 end
...
7
8
9
10
 
11
12
13
...
16
17
18
19
 
20
21
22
...
7
8
9
 
10
11
12
13
...
16
17
18
 
19
20
21
22
0
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
0
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
0
   s.authors = ["Yehuda Katz"]
0
   s.autorequire = %q{textmate}
0
- s.date = %q{2008-05-27}
0
+ s.date = %q{2008-05-28}
0
   s.default_executable = %q{textmate}
0
   s.description = %q{Command-line textmate package manager}
0
   s.email = %q{wycats@gmail.com}
0
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
0
   s.files = ["LICENSE", "README.markdown", "Rakefile", "bin/textmate"]
0
   s.has_rdoc = true
0
   s.homepage = %q{http://yehudakatz.com}
0
- s.require_paths = ["lib"]
0
+ s.require_paths = ["bin"]
0
   s.rubygems_version = %q{1.1.1}
0
   s.summary = %q{Command-line textmate package manager}
0
 

Comments

    No one has commented yet.