Skip to content

Commit

Permalink
Prepped for 0.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker committed Oct 5, 2009
1 parent f42adb6 commit 7184dd0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions HOW_TO_RELEASE
@@ -0,0 +1,5 @@
* Change lib/happymapper/version to new version.
* rake prepare
* git commit version bump
* git push for github
* rake release for rubyforge
4 changes: 4 additions & 0 deletions Manifest
@@ -1,10 +1,12 @@
examples/amazon.rb
examples/current_weather.rb
examples/dashed_elements.rb
examples/multi_street_address.rb
examples/post.rb
examples/twitter.rb
happymapper.gemspec
History
HOW_TO_RELEASE
lib/happymapper/attribute.rb
lib/happymapper/element.rb
lib/happymapper/item.rb
Expand All @@ -19,7 +21,9 @@ spec/fixtures/analytics.xml
spec/fixtures/commit.xml
spec/fixtures/current_weather.xml
spec/fixtures/family_tree.xml
spec/fixtures/multi_street_address.xml
spec/fixtures/multiple_namespaces.xml
spec/fixtures/nested_namespaces.xml
spec/fixtures/pita.xml
spec/fixtures/posts.xml
spec/fixtures/product_default_namespace.xml
Expand Down
14 changes: 5 additions & 9 deletions happymapper.gemspec
Expand Up @@ -2,37 +2,33 @@

Gem::Specification.new do |s|
s.name = %q{happymapper}
s.version = "0.2.5"
s.version = "0.3.0"

s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["John Nunemaker"]
s.date = %q{2009-05-27}
s.date = %q{2009-10-04}
s.description = %q{object to xml mapping library}
s.email = %q{nunemaker@gmail.com}
s.extra_rdoc_files = ["lib/happymapper/attribute.rb", "lib/happymapper/element.rb", "lib/happymapper/item.rb", "lib/happymapper/version.rb", "lib/happymapper.rb", "README", "TODO"]
s.files = ["examples/amazon.rb", "examples/current_weather.rb", "examples/dashed_elements.rb", "examples/post.rb", "examples/twitter.rb", "happymapper.gemspec", "History", "lib/happymapper/attribute.rb", "lib/happymapper/element.rb", "lib/happymapper/item.rb", "lib/happymapper/version.rb", "lib/happymapper.rb", "License", "Manifest", "Rakefile", "README", "spec/fixtures/address.xml", "spec/fixtures/analytics.xml", "spec/fixtures/commit.xml", "spec/fixtures/current_weather.xml", "spec/fixtures/family_tree.xml", "spec/fixtures/multiple_namespaces.xml", "spec/fixtures/pita.xml", "spec/fixtures/posts.xml", "spec/fixtures/product_default_namespace.xml", "spec/fixtures/product_no_namespace.xml", "spec/fixtures/product_single_namespace.xml", "spec/fixtures/radar.xml", "spec/fixtures/statuses.xml", "spec/happymapper_attribute_spec.rb", "spec/happymapper_element_spec.rb", "spec/happymapper_item_spec.rb", "spec/happymapper_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "TODO", "website/css/common.css", "website/index.html"]
s.has_rdoc = true
s.files = ["examples/amazon.rb", "examples/current_weather.rb", "examples/dashed_elements.rb", "examples/multi_street_address.rb", "examples/post.rb", "examples/twitter.rb", "happymapper.gemspec", "History", "How", "to", "release", "lib/happymapper/attribute.rb", "lib/happymapper/element.rb", "lib/happymapper/item.rb", "lib/happymapper/version.rb", "lib/happymapper.rb", "License", "Manifest", "Rakefile", "README", "spec/fixtures/address.xml", "spec/fixtures/analytics.xml", "spec/fixtures/commit.xml", "spec/fixtures/current_weather.xml", "spec/fixtures/family_tree.xml", "spec/fixtures/multi_street_address.xml", "spec/fixtures/multiple_namespaces.xml", "spec/fixtures/nested_namespaces.xml", "spec/fixtures/pita.xml", "spec/fixtures/posts.xml", "spec/fixtures/product_default_namespace.xml", "spec/fixtures/product_no_namespace.xml", "spec/fixtures/product_single_namespace.xml", "spec/fixtures/radar.xml", "spec/fixtures/statuses.xml", "spec/happymapper_attribute_spec.rb", "spec/happymapper_element_spec.rb", "spec/happymapper_item_spec.rb", "spec/happymapper_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "TODO", "website/css/common.css", "website/index.html"]
s.homepage = %q{http://happymapper.rubyforge.org}
s.post_install_message = %q{May you have many happy mappings!}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Happymapper", "--main", "README"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{happymapper}
s.rubygems_version = %q{1.3.1}
s.rubygems_version = %q{1.3.5}
s.summary = %q{object to xml mapping library}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<libxml-ruby>, ["= 1.1.3"])
s.add_development_dependency(%q<echoe>, [">= 0"])
else
s.add_dependency(%q<libxml-ruby>, ["= 1.1.3"])
s.add_dependency(%q<echoe>, [">= 0"])
end
else
s.add_dependency(%q<libxml-ruby>, ["= 1.1.3"])
s.add_dependency(%q<echoe>, [">= 0"])
end
end
2 changes: 1 addition & 1 deletion lib/happymapper/version.rb
@@ -1,3 +1,3 @@
module HappyMapper
Version = '0.2.5'
Version = '0.3.0'
end

0 comments on commit 7184dd0

Please sign in to comment.