├── .bnsignore ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── History.txt ├── README.rdoc ├── Rakefile ├── VERSION ├── bin └── couch-docs ├── couch_docs.gemspec ├── fixtures ├── _design │ ├── __lib │ │ └── foo.js │ ├── a │ │ ├── b │ │ │ ├── c.js │ │ │ └── d.js │ │ └── e.json │ ├── j │ │ └── q.json │ └── x │ │ └── z.js ├── bar.json ├── baz_with_attachments.json ├── baz_with_attachments │ └── spacer.gif └── foo.json ├── lib ├── couch_docs.rb └── couch_docs │ ├── command_line.rb │ ├── design_directory.rb │ ├── document_directory.rb │ ├── store.rb │ └── version.rb ├── spec ├── couch_docs │ ├── command_line_spec.rb │ ├── design_directory_spec.rb │ ├── document_directory_spec.rb │ └── store_spec.rb ├── couch_docs_spec.rb ├── spec.opts └── spec_helper.rb └── test └── test_couch_docs.rb /.bnsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/.bnsignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | .rvmrc 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/History.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.3.2 2 | -------------------------------------------------------------------------------- /bin/couch-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/bin/couch-docs -------------------------------------------------------------------------------- /couch_docs.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/couch_docs.gemspec -------------------------------------------------------------------------------- /fixtures/_design/__lib/foo.js: -------------------------------------------------------------------------------- 1 | function foo () { return "foo"; } 2 | -------------------------------------------------------------------------------- /fixtures/_design/a/b/c.js: -------------------------------------------------------------------------------- 1 | function(doc) { return true; } -------------------------------------------------------------------------------- /fixtures/_design/a/b/d.js: -------------------------------------------------------------------------------- 1 | function(doc) { return true; } -------------------------------------------------------------------------------- /fixtures/_design/a/e.json: -------------------------------------------------------------------------------- 1 | [{"one": "2"}] 2 | -------------------------------------------------------------------------------- /fixtures/_design/j/q.json: -------------------------------------------------------------------------------- 1 | ["!code foo.js"] 2 | -------------------------------------------------------------------------------- /fixtures/_design/x/z.js: -------------------------------------------------------------------------------- 1 | // !code foo.js 2 | function bar () { return "bar"; } 3 | -------------------------------------------------------------------------------- /fixtures/bar.json: -------------------------------------------------------------------------------- 1 | {"bar":"2"} -------------------------------------------------------------------------------- /fixtures/baz_with_attachments.json: -------------------------------------------------------------------------------- 1 | {"baz":"3"} 2 | -------------------------------------------------------------------------------- /fixtures/baz_with_attachments/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/fixtures/baz_with_attachments/spacer.gif -------------------------------------------------------------------------------- /fixtures/foo.json: -------------------------------------------------------------------------------- 1 | {"foo":"1"} -------------------------------------------------------------------------------- /lib/couch_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/lib/couch_docs.rb -------------------------------------------------------------------------------- /lib/couch_docs/command_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/lib/couch_docs/command_line.rb -------------------------------------------------------------------------------- /lib/couch_docs/design_directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/lib/couch_docs/design_directory.rb -------------------------------------------------------------------------------- /lib/couch_docs/document_directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/lib/couch_docs/document_directory.rb -------------------------------------------------------------------------------- /lib/couch_docs/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/lib/couch_docs/store.rb -------------------------------------------------------------------------------- /lib/couch_docs/version.rb: -------------------------------------------------------------------------------- 1 | module CouchDocs 2 | VERSION = "1.3.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/couch_docs/command_line_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/spec/couch_docs/command_line_spec.rb -------------------------------------------------------------------------------- /spec/couch_docs/design_directory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/spec/couch_docs/design_directory_spec.rb -------------------------------------------------------------------------------- /spec/couch_docs/document_directory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/spec/couch_docs/document_directory_spec.rb -------------------------------------------------------------------------------- /spec/couch_docs/store_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/spec/couch_docs/store_spec.rb -------------------------------------------------------------------------------- /spec/couch_docs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/spec/couch_docs_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | -cfs --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eee-c/couch_docs/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/test_couch_docs.rb: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------