Aqua.gemspec in baccigalupi-aqua-0.1.4 vs Aqua.gemspec in baccigalupi-aqua-0.1.5
- 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.4"
+ s.version = "0.1.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kane Baccigalupi"]
- s.date = %q{2009-08-27}
+ s.date = %q{2009-08-31}
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"
@@ -38,12 +38,14 @@
"doc/Aqua/Query/ClassMethods.html",
"doc/Aqua/Query/InstanceMethods.html",
"doc/Aqua/Storage.html",
"doc/Aqua/Store.html",
"doc/Aqua/Store/CouchDB.html",
+ "doc/Aqua/Store/CouchDB/Attachments.html",
"doc/Aqua/Store/CouchDB/Conflict.html",
"doc/Aqua/Store/CouchDB/Database.html",
+ "doc/Aqua/Store/CouchDB/DesignDocument.html",
"doc/Aqua/Store/CouchDB/RequestFailed.html",
"doc/Aqua/Store/CouchDB/RequestTimeout.html",
"doc/Aqua/Store/CouchDB/ResourceNotFound.html",
"doc/Aqua/Store/CouchDB/Server.html",
"doc/Aqua/Store/CouchDB/ServerBrokeConnection.html",
@@ -64,13 +66,15 @@
"doc/Fixnum.html",
"doc/Float.html",
"doc/Hash.html",
"doc/OpenStruct.html",
"doc/README.rdoc.html",
+ "doc/Range.html",
"doc/Rational.html",
"doc/RestAPI.html",
"doc/RestClientAdapter.html",
+ "doc/Set.html",
"doc/Time.html",
"doc/TrueClass.html",
"doc/all-files.html",
"doc/all-methods.html",
"doc/all-namespaces.html",
@@ -90,43 +94,51 @@
"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/attachments.rb",
"lib/aqua/store/couch_db/couch_db.rb",
"lib/aqua/store/couch_db/database.rb",
+ "lib/aqua/store/couch_db/design_document.rb",
"lib/aqua/store/couch_db/http_client/adapter/rest_client.rb",
"lib/aqua/store/couch_db/http_client/rest_api.rb",
"lib/aqua/store/couch_db/server.rb",
"lib/aqua/store/couch_db/storage_methods.rb",
"lib/aqua/store/storage.rb",
"lib/aqua/support/initializers.rb",
"lib/aqua/support/mash.rb",
+ "lib/aqua/support/set.rb",
"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/sugar.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/attachments_spec.rb",
"spec/store/couchdb/couch_db_spec.rb",
"spec/store/couchdb/database_spec.rb",
- "spec/store/couchdb/document_fixture.rb",
+ "spec/store/couchdb/design_document_spec.rb",
+ "spec/store/couchdb/fixtures_and_data/document_fixture.rb",
+ "spec/store/couchdb/fixtures_and_data/image_attach.png",
"spec/store/couchdb/server_spec.rb",
"spec/store/couchdb/storage_methods_spec.rb",
"utils/code_statistics.rb",
- "utils/console"
+ "utils/console",
+ "utils/custom.css"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/baccigalupi/aqua}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
@@ -139,19 +151,22 @@
"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/sugar.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/attachments_spec.rb",
"spec/store/couchdb/couch_db_spec.rb",
"spec/store/couchdb/database_spec.rb",
- "spec/store/couchdb/document_fixture.rb",
+ "spec/store/couchdb/design_document_spec.rb",
+ "spec/store/couchdb/fixtures_and_data/document_fixture.rb",
"spec/store/couchdb/server_spec.rb",
"spec/store/couchdb/storage_methods_spec.rb"
]
if s.respond_to? :specification_version then