couch-quilt 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ require "rubygems"
2
+ require 'spec'
3
+
4
+ require File.join(File.dirname(__FILE__), '../lib/couchquilt')
5
+ require File.join(File.dirname(__FILE__), '../lib/couchquilt/debugged_fs')
6
+
7
+ SERVER_NAME = "http://127.0.0.1:5984"
8
+ TESTDB = "quilt-test-db"
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: couch-quilt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - "Johannes J\xC3\xB6rg Schmidt"
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-25 00:00:00 +01:00
13
+ default_executable: couchquilt
14
+ dependencies: []
15
+
16
+ description: Access CouchDB JSON documents from filesystem.
17
+ email: schmidt@netzmerk.com
18
+ executables:
19
+ - couchquilt
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.md
24
+ files:
25
+ - .gitignore
26
+ - INSTALL
27
+ - README.md
28
+ - Rakefile
29
+ - bin/couchquilt
30
+ - couch-quilt.gemspec
31
+ - lib/couchquilt.rb
32
+ - lib/couchquilt/couch_client.rb
33
+ - lib/couchquilt/debugged_fs.rb
34
+ - lib/couchquilt/fs.rb
35
+ - lib/couchquilt/version.rb
36
+ - spec/couchquilt_spec.rb
37
+ - spec/spec_helper.rb
38
+ has_rdoc: true
39
+ homepage: http://jo.github.com/quilt
40
+ licenses: []
41
+
42
+ post_install_message:
43
+ rdoc_options:
44
+ - --charset=UTF-8
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: "0"
52
+ version:
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: "0"
58
+ version:
59
+ requirements: []
60
+
61
+ rubyforge_project: couch-quilt
62
+ rubygems_version: 1.3.5
63
+ signing_key:
64
+ specification_version: 3
65
+ summary: Access CouchDB from filesystem.
66
+ test_files:
67
+ - spec/couchquilt_spec.rb
68
+ - spec/spec_helper.rb