Rakefile in cypher-textmate-0.9.1 vs Rakefile in cypher-textmate-0.9.2
- old
+ new
@@ -1,11 +1,11 @@
require 'rubygems'
require 'rake/gempackagetask'
require 'date'
GEM = "textmate"
-GEM_VERSION = "0.9.1"
+GEM_VERSION = "0.9.2"
AUTHOR = "Yehuda Katz"
EMAIL = "wycats@gmail.com"
HOMEPAGE = "http://yehudakatz.com"
SUMMARY = "Command-line textmate package manager"
@@ -19,14 +19,14 @@
s.description = s.summary
s.author = AUTHOR
s.email = EMAIL
s.homepage = HOMEPAGE
- s.add_dependency "thor", ">= 0.9.1"
+ s.add_dependency "thor", ">= 0.9.2"
- s.require_path = 'lib'
+ s.require_path = 'bin' # Yes, it's a hack, but otherwise gem complains on install
s.autorequire = GEM
- s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("{bin,lib,specs}/**/*")
+ s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("{bin,specs}/**/*")
s.bindir = "bin"
s.executables = %w( textmate )
end
Rake::GemPackageTask.new(spec) do |pkg|
\ No newline at end of file