hack_tree.gemspec in hack_tree-0.1.0 vs hack_tree.gemspec in hack_tree-0.1.1

- old
+ new

@@ -1,22 +1,23 @@ -$: << File.join(File.dirname(__FILE__), "lib") -require "hack_tree" +require File.expand_path("../lib/hack_tree/version", __FILE__) Gem::Specification.new do |s| - s.name = "hack_tree" - s.version = HackTree::VERSION - s.authors = ["Alex Fortuna"] - s.email = ["alex.r@askit.org"] - s.homepage = "http://github.com/dadooda/hack_tree" + s.name = "hack_tree" + s.version = HackTree::VERSION + s.authors = ["Alex Fortuna"] + s.email = ["alex.r@askit.org"] + s.homepage = "http://github.com/dadooda/hack_tree" # Copy these from class's description, adjust markup. - s.summary = %q{Organize and share your console hacks} + s.summary = %q{Organize and share your console hacks} + # TODO: Proper text. s.description = %q{HackTree lets you organize and share your console hacks in an effective and uniform way. Blah-blah-blah.} # end of s.description= - s.files = `git ls-files`.split("\n") - s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") - s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f)} s.require_paths = ["lib"] s.add_development_dependency "rspec" + s.add_development_dependency "yard" end