# Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = %q{has_price} s.version = "1.0.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Maxim Chernyak"] s.date = %q{2009-12-02} s.description = %q{A convenient DSL for defining complex price reader/serializer in a class and organizing a price breakdown. Price can be declared with items and groups which depend on other attributes. Price is a very simple subclass of Hash. This provides for easy serialization and flexibility in case of implementation changes. This way you can conveniently store the whole price breakdown in your serialized receipts. It also provides magic methods for convenient access, but can be fully treated as a regular Hash with some sprinkles on top.} s.email = %q{max@bitsonnet.com} s.extra_rdoc_files = [ "LICENSE", "README.md" ] s.files = [ ".gitignore", "LICENSE", "README.md", "Rakefile", "VERSION", "has_price.gemspec", "lib/has_price.rb", "lib/has_price/core_extensions/array.rb", "lib/has_price/core_extensions/string.rb", "lib/has_price/has_price.rb", "lib/has_price/price.rb", "lib/has_price/price_builder.rb", "rails/init.rb", "test/helper.rb", "test/test_has_price.rb", "test/test_price.rb", "test/test_price_builder.rb" ] s.homepage = %q{http://github.com/maxim/has_price} s.rdoc_options = ["--charset=UTF-8"] s.require_paths = ["lib"] s.rubygems_version = %q{1.3.5} s.summary = %q{Provides a convenient DSL for organizing a price breakdown in a class.} s.test_files = [ "test/helper.rb", "test/test_has_price.rb", "test/test_price.rb", "test/test_price_builder.rb" ] if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.specification_version = 3 if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) end else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, [">= 0"]) end end