morph.gemspec in morph-0.3.2 vs morph.gemspec in morph-0.3.3

- old
+ new

@@ -1,34 +1,39 @@ # -*- encoding: utf-8 -*- Gem::Specification.new do |s| - s.name = %q{morph} - s.version = "0.3.2" + s.name = "morph" + s.version = "0.3.3" s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version= s.authors = ["Rob McKinnon"] - s.date = %q{2010-10-20} - s.description = %q{Morph allows you to emerge class definitions via calling assignment methods; mix with Hpricot for screen scraping fun. -} + s.date = "2011-09-21" + s.description = "Morph mixin allows you to emerge class definitions via calling assignment methods; mix with Nokogiri for screen scraping fun.\n" s.email = ["rob ~@nospam@~ rubyforge.org"] s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README"] - s.files = ["CHANGELOG", "examples/forger.rb", "examples/hubbit.rb", "lib/morph.rb", "LICENSE", "README", "spec/lib/morph_spec.rb", "spec/morph_spec_helper.rb", "spec/spec.opts", "Manifest", "morph.gemspec", "Rakefile"] - s.homepage = %q{} + s.files = ["CHANGELOG", "examples/forger.rb", "examples/hubbit.rb", "lib/morph.rb", "LICENSE", "README", "spec/lib/morph_spec.rb", "spec/morph_spec_helper.rb", "spec/spec_helper.rb", "Manifest", "morph.gemspec", "Rakefile"] + s.homepage = "https://github.com/robmckinnon/morph" + s.post_install_message = "Read usage examples at: https://github.com/robmckinnon/morph#readme" s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Morph", "--main", "README", "--inline-source"] s.require_paths = ["lib"] - s.rubyforge_project = %q{morph} - s.rubygems_version = %q{1.3.7} - s.summary = %q{Morph allows you to emerge class definitions via calling assignment methods; mix with Hpricot for screen scraping fun.} + s.rubyforge_project = "morph" + s.rubygems_version = "1.8.10" + s.summary = "Morph mixin allows you to emerge class definitions via calling assignment methods." if s.respond_to? :specification_version then - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q<activesupport>, [">= 2.0.2"]) + s.add_development_dependency(%q<rspec>, [">= 0"]) + s.add_development_dependency(%q<echoe>, [">= 0"]) else s.add_dependency(%q<activesupport>, [">= 2.0.2"]) + s.add_dependency(%q<rspec>, [">= 0"]) + s.add_dependency(%q<echoe>, [">= 0"]) end else s.add_dependency(%q<activesupport>, [">= 2.0.2"]) + s.add_dependency(%q<rspec>, [">= 0"]) + s.add_dependency(%q<echoe>, [">= 0"]) end end