basic_tree.gemspec in basic_tree-0.1.0 vs basic_tree.gemspec in basic_tree-0.1.1

- old
+ new

@@ -1,55 +1,23 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "basic_tree" Gem::Specification.new do |s| - s.name = %q{basic_tree} - s.version = "0.1.0" - - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + s.name = "basic_tree" + s.version = BasicTree::VERSION + s.platform = Gem::Platform::RUBY s.authors = ["Austin Schneider"] - s.date = %q{2010-07-01} - s.description = %q{A basic tree structure} - s.email = %q{soccer022483@gmail.com} - s.extra_rdoc_files = [ - "LICENSE", - "README.rdoc" - ] - s.files = [ - ".document", - ".gitignore", - "LICENSE", - "README.rdoc", - "Rakefile", - "VERSION", - "basic_tree.gemspec", - "lib/basic_tree.rb", - "spec/basic_tree_spec.rb", - "spec/spec.opts", - "spec/spec_helper.rb" - ] - s.homepage = %q{http://github.com/soccer022483/basic_tree} - s.rdoc_options = ["--charset=UTF-8"] - s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.7} - s.summary = %q{A basic tree structure} - s.test_files = [ - "spec/basic_tree_spec.rb", - "spec/spec_helper.rb" - ] + s.email = ["soccer022483@gmail.com"] + s.homepage = "http://github.com/soccer022483/basic_tree" + s.summary = %q{A basic tree structure.} + s.description = %q{A basic tree structure.} - if s.respond_to? :specification_version then - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 3 + s.rubyforge_project = "basic_tree" - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_development_dependency(%q<rspec>, [">= 1.2.9"]) - else - s.add_dependency(%q<rspec>, [">= 1.2.9"]) - end - else - s.add_dependency(%q<rspec>, [">= 1.2.9"]) - end -end + 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', ">= 2" +end \ No newline at end of file