2008-06-20 23:19:34 +02:00
Gem :: Specification . new do | s |
2008-09-12 21:47:05 +02:00
s . extra_rdoc_files = [ " README.rdoc " , " LICENSE " , " THANKS " ]
2008-11-22 23:16:44 +01:00
s . date = " Sat Nov 22 00:00:00 -0800 2008 "
2008-09-16 17:49:14 +02:00
s . executables = [ " couchview " , " couchdir " , " couchapp " ]
2008-09-12 21:47:05 +02:00
s . authors = [ " J. Chris Anderson " ]
s . required_rubygems_version = " >= 0 "
2008-11-22 23:16:44 +01:00
s . version = " 0.10.0 "
2008-09-12 21:47:05 +02:00
s . files = [ " LICENSE " ,
" README.rdoc " ,
" Rakefile " ,
" THANKS " ,
2008-09-16 17:45:45 +02:00
" bin/couchapp " ,
2008-09-12 21:47:05 +02:00
" bin/couchdir " ,
" bin/couchview " ,
2008-10-03 08:47:10 +02:00
" examples/model " ,
" examples/model/example.rb " ,
2008-09-12 21:47:05 +02:00
" examples/word_count " ,
" examples/word_count/markov " ,
" examples/word_count/views " ,
" examples/word_count/views/books " ,
" examples/word_count/views/books/chunked-map.js " ,
" examples/word_count/views/books/united-map.js " ,
" examples/word_count/views/markov " ,
" examples/word_count/views/markov/chain-map.js " ,
" examples/word_count/views/markov/chain-reduce.js " ,
" examples/word_count/views/word_count " ,
" examples/word_count/views/word_count/count-map.js " ,
" examples/word_count/views/word_count/count-reduce.js " ,
" examples/word_count/word_count.rb " ,
" examples/word_count/word_count_query.rb " ,
" lib/couchrest " ,
" lib/couchrest/commands " ,
" lib/couchrest/commands/generate.rb " ,
" lib/couchrest/commands/push.rb " ,
" lib/couchrest/core " ,
" lib/couchrest/core/database.rb " ,
2008-11-22 23:16:44 +01:00
" lib/couchrest/core/design.rb " ,
" lib/couchrest/core/document.rb " ,
2008-09-30 19:22:17 +02:00
" lib/couchrest/core/model.rb " ,
2008-09-12 21:47:05 +02:00
" lib/couchrest/core/server.rb " ,
2008-11-22 23:16:44 +01:00
" lib/couchrest/core/view.rb " ,
2008-09-12 21:47:05 +02:00
" lib/couchrest/helper " ,
" lib/couchrest/helper/file_manager.rb " ,
" lib/couchrest/helper/pager.rb " ,
" lib/couchrest/helper/streamer.rb " ,
2008-09-16 17:45:45 +02:00
" lib/couchrest/helper/templates " ,
2008-10-28 17:59:58 +01:00
" lib/couchrest/helper/templates/bar.txt " ,
2008-09-16 17:45:45 +02:00
" lib/couchrest/helper/templates/example-map.js " ,
" lib/couchrest/helper/templates/example-reduce.js " ,
" lib/couchrest/helper/templates/index.html " ,
2008-09-12 21:47:05 +02:00
" lib/couchrest/monkeypatches.rb " ,
" lib/couchrest.rb " ,
2008-09-16 17:45:45 +02:00
" spec/couchapp_spec.rb " ,
2008-09-30 19:22:17 +02:00
" spec/couchrest " ,
" spec/couchrest/core " ,
2008-10-03 08:47:10 +02:00
" spec/couchrest/core/couchrest_spec.rb " ,
" spec/couchrest/core/database_spec.rb " ,
2008-11-22 23:16:44 +01:00
" spec/couchrest/core/design_spec.rb " ,
" spec/couchrest/core/document_spec.rb " ,
2008-09-30 19:22:17 +02:00
" spec/couchrest/core/model_spec.rb " ,
2008-10-15 00:35:05 +02:00
" spec/couchrest/helpers " ,
" spec/couchrest/helpers/file_manager_spec.rb " ,
" spec/couchrest/helpers/pager_spec.rb " ,
" spec/couchrest/helpers/streamer_spec.rb " ,
2008-09-12 21:47:05 +02:00
" spec/fixtures " ,
" spec/fixtures/attachments " ,
2008-10-03 08:47:10 +02:00
" spec/fixtures/attachments/couchdb.png " ,
2008-09-12 21:47:05 +02:00
" spec/fixtures/attachments/test.html " ,
" spec/fixtures/views " ,
" spec/fixtures/views/lib.js " ,
" spec/fixtures/views/test_view " ,
" spec/fixtures/views/test_view/lib.js " ,
" spec/fixtures/views/test_view/only-map.js " ,
" spec/fixtures/views/test_view/test-map.js " ,
" spec/fixtures/views/test_view/test-reduce.js " ,
" spec/spec.opts " ,
" spec/spec_helper.rb " ,
" utils/remap.rb " ,
" utils/subset.rb " ]
s . has_rdoc = " true "
2008-09-13 00:34:23 +02:00
s . specification_version = 2
2008-09-12 21:47:05 +02:00
s . loaded = " false "
2008-06-20 23:19:34 +02:00
s . email = " jchris@grabb.it "
2008-09-12 21:47:05 +02:00
s . name = " couchrest "
s . required_ruby_version = " >= 0 "
s . bindir = " bin "
s . rubygems_version = " 1.2.0 "
2008-06-20 23:19:34 +02:00
s . homepage = " http://github.com/jchris/couchrest "
2008-09-12 21:47:05 +02:00
s . platform = " ruby "
s . summary = " Lean and RESTful interface to CouchDB. "
2008-06-20 23:19:34 +02:00
s . description = " CouchRest provides a simple interface on top of CouchDB's RESTful HTTP API, as well as including some utility scripts for managing views and attachments. "
2008-09-12 21:56:26 +02:00
s . add_dependency " json " , [ " >= 1.1.2 " ]
s . add_dependency " rest-client " , [ " >= 0.5 " ]
2008-09-30 19:22:17 +02:00
s . add_dependency " extlib " , [ " >= 0.9.6 " ]
2008-09-12 21:47:05 +02:00
s . require_paths = [ " lib " ]
end