Aqua.gemspec in baccigalupi-aqua-0.1.2 vs Aqua.gemspec in baccigalupi-aqua-0.1.3
- old
+ new
@@ -3,15 +3,15 @@
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{aqua}
- s.version = "0.1.2"
+ s.version = "0.1.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kane Baccigalupi"]
- s.date = %q{2009-08-25}
+ s.date = %q{2009-08-27}
s.description = %q{Even with ORMs like ActiveRecord, DataMapper which ease the pain of relational data storage, considerable developer effort goes into wrangling Ruby objects into their databases. Document-oriented databases have made it possible to store nested data structures that easily map to Ruby objects. Aqua (http://github.com/baccigalupi/aqua) is a new Ruby library that aims to painlessly persists objects, allowing developers to focus more on object oriented code and less on storage. Currently Aqua is in pre-alpha testing, with the following big things left to implement: A data query DSL and implementation; Support of all objects in the Standard Library; Class and code storage to allow the sharing and persistence of classes with their data.}
s.email = %q{baccigalupi@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
@@ -72,10 +72,11 @@
"lib/aqua/object/extensions/ar_style.rb",
"lib/aqua/object/extensions/property.rb",
"lib/aqua/object/extensions/validation.rb",
"lib/aqua/object/pack.rb",
"lib/aqua/object/query.rb",
+ "lib/aqua/object/stub.rb",
"lib/aqua/object/tank.rb",
"lib/aqua/object/unpack.rb",
"lib/aqua/store/couch_db/couch_db.rb",
"lib/aqua/store/couch_db/database.rb",
"lib/aqua/store/couch_db/http_client/adapter/rest_client.rb",
@@ -87,16 +88,18 @@
"lib/aqua/support/string_extensions.rb",
"spec/aqua_spec.rb",
"spec/object/config_spec.rb",
"spec/object/object_fixtures/array_udder.rb",
"spec/object/object_fixtures/canned_hash.rb",
+ "spec/object/object_fixtures/gerbilmiester.rb",
"spec/object/object_fixtures/grounded.rb",
"spec/object/object_fixtures/log.rb",
"spec/object/object_fixtures/persistent.rb",
"spec/object/object_fixtures/user.rb",
"spec/object/pack_spec.rb",
"spec/object/query_spec.rb",
+ "spec/object/stub_spec.rb",
"spec/object/tank_spec.rb",
"spec/object/unpack_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/store/couchdb/couch_db_spec.rb",
@@ -116,15 +119,17 @@
s.test_files = [
"spec/aqua_spec.rb",
"spec/object/config_spec.rb",
"spec/object/object_fixtures/array_udder.rb",
"spec/object/object_fixtures/canned_hash.rb",
+ "spec/object/object_fixtures/gerbilmiester.rb",
"spec/object/object_fixtures/grounded.rb",
"spec/object/object_fixtures/log.rb",
"spec/object/object_fixtures/persistent.rb",
"spec/object/object_fixtures/user.rb",
"spec/object/pack_spec.rb",
"spec/object/query_spec.rb",
+ "spec/object/stub_spec.rb",
"spec/object/tank_spec.rb",
"spec/object/unpack_spec.rb",
"spec/spec_helper.rb",
"spec/store/couchdb/couch_db_spec.rb",
"spec/store/couchdb/database_spec.rb",