morph.gemspec in morph-0.1.0 vs morph.gemspec in morph-0.1.2

- old
+ new

@@ -1,22 +1,23 @@ -# Gem::Specification for Morph-0.1.0 +# Gem::Specification for Morph-0.1.2 # Originally generated by Echoe Gem::Specification.new do |s| s.name = %q{morph} - s.version = "0.1.0" + s.version = "0.1.2" s.specification_version = 2 if s.respond_to? :specification_version= - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Rob McKinnon"] - s.date = %q{2008-03-24} + s.date = %q{2008-03-25} s.description = %q{Morph allows you to emerge class definitions via calling assignment methods.} s.email = ["rob ~@nospam@~ rubyforge.org"] s.files = ["CHANGELOG", "examples/forger.rb", "examples/hubbit.rb", "lib/morph.rb", "LICENSE", "README", "spec/morph_spec.rb", "spec/spec.opts", "Manifest", "morph.gemspec"] s.has_rdoc = true + s.rdoc_options += ['--quiet', '--inline-source', '--main', 'README'] + s.extra_rdoc_files = ["README", "CHANGELOG", "LICENSE"] s.homepage = %q{} s.require_paths = ["lib"] s.rubyforge_project = %q{morph} s.rubygems_version = %q{1.0.1} s.summary = %q{Morph allows you to emerge class definitions via calling assignment methods.} @@ -30,27 +31,22 @@ # require 'lib/morph' # # begin # require 'echoe' # -# Echoe.new("morph", Morph::VERSION) do |morph| -# morph.author = ["Rob McKinnon"] -# morph.email = ["rob ~@nospam@~ rubyforge.org"] -# morph.description = File.readlines("README").first -# morph.rubyforge_name = "morph" +# Echoe.new("morph", Morph::VERSION) do |m| +# m.author = ["Rob McKinnon"] +# m.email = ["rob ~@nospam@~ rubyforge.org"] +# m.description = File.readlines("README").first +# m.rubyforge_name = "morph" +# m.rdoc_options << '--inline-source' +# m.rdoc_pattern = ["README", "CHANGELOG", "LICENSE", "lib/*"] # end # # rescue LoadError # puts "You need to install the echoe gem to perform meta operations on this gem" # end # # desc "Open an irb session preloaded with this library" # task :console do # sh "irb -rubygems -r ./lib/morph.rb" -# end -# -# desc "Run spec runner" -# task(:test) do -# files = FileList['spec/**/*_spec.rb'] -# Spec::Runner::CommandLine.run(rspec_options) -# system "ruby spec/spec_runner.rb #{files} --format specdoc" # end