couchrest_casted_view 0.0.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.
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ Gemfile.lock
2
+ *.gem
3
+ *.swp
4
+ *.swo
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source :rubygems
2
+ gemspec
3
+
data/LICENSE ADDED
@@ -0,0 +1,176 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
data/README.md ADDED
@@ -0,0 +1,87 @@
1
+ # CouchRest Casted View: Enable polymorphic CouchDB views
2
+
3
+ ## Installation
4
+
5
+ (depends on `couchrest` and `couchrest_model` gems)
6
+
7
+ ### Gem
8
+
9
+ $ gem install couchrest_casted_view
10
+
11
+ ### Bundler
12
+
13
+ Bundler users can add this line to their Gemfile:
14
+
15
+ gem 'couchrest_casted_view'
16
+
17
+ ## Usage
18
+
19
+ The following is a simple example of using a CouchDB view to load documents
20
+ of different CouchRest::Model classes, casted automatically:
21
+
22
+ require 'rubygems'
23
+ require 'couchrest_casted_view'
24
+
25
+ # connect to the CouchDB server
26
+ cr = CouchRest.new('http://localhost:5984')
27
+ DB = cr.database('casted_test')
28
+ # create the database
29
+ DB.recreate!
30
+
31
+ # define a couple of similar document models
32
+ class Service < CouchRest::Model::Base
33
+ use_database DB
34
+ property :name
35
+ end
36
+
37
+ class Person < CouchRest::Model::Base
38
+ use_database DB
39
+ property :name
40
+ end
41
+
42
+ # create some documents (services and users)
43
+ ['Socialiting', 'Window Washing',
44
+ 'Keynoting', 'Table Architecture'].each do |name|
45
+ Service.new(:name => name).save!
46
+ end
47
+
48
+ ['Zark Muckerberg', 'Gill Bates',
49
+ 'Jeve Stobs', 'Ellarry Lison'].each do |name|
50
+ Person.new(:name => name).save!
51
+ end
52
+
53
+ # a simple view that splits the 'name' field
54
+ # into words and emits one row per word
55
+ DB.save_doc({
56
+ "_id" => "_design/generic",
57
+ :views => {
58
+ :by_word => {
59
+ :map => <<-JS
60
+ function(doc) {
61
+ if (doc.name && doc.name.length > 0) {
62
+ var words = doc.name.split(/\\W/);
63
+ words.forEach(function(word){
64
+ if (word.length > 0) emit(word, 1);
65
+ });
66
+ }
67
+ }
68
+ JS
69
+ } } })
70
+
71
+ # query the generic view
72
+ rows = DB.casted_view('generic/by_word')['rows']
73
+
74
+ # each returned document should be casted as the
75
+ # correct CouchRest::Model class
76
+ rows.each do |row|
77
+ doc = row['doc']
78
+ key = row['key']
79
+ value = row['value']
80
+ puts [doc.id, doc.class.to_s, doc.name, key, value].join(', ')
81
+ end
82
+
83
+ ## Contact
84
+
85
+ Bugs, suggestions, and such can be posted to [https://github.com/m104/couchrest_casted_view/issues](https://github.com/m104/couchrest_casted_view/issues).
86
+
87
+
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ require 'rspec/core/rake_task'
4
+ require "rake/task"
5
+
6
+ Bundler::GemHelper.install_tasks
7
+
8
+ desc "Run all specs"
9
+ RSpec::Core::RakeTask.new(:spec) do |spec|
10
+ spec.rspec_opts = ["--color"]
11
+ spec.pattern = 'spec/*_spec.rb'
12
+ end
13
+
14
+ desc "Print specdocs"
15
+ RSpec::Core::RakeTask.new(:doc) do |spec|
16
+ spec.rspec_opts = ["--format", "specdoc"]
17
+ spec.pattern = 'spec/*_spec.rb'
18
+ end
19
+
20
+ =begin
21
+ desc "Generate the rdoc"
22
+ Rake::RDocTask.new do |rdoc|
23
+ files = ["README.rdoc", "LICENSE", "lib/**/*.rb"]
24
+ rdoc.rdoc_files.add(files)
25
+ rdoc.main = "README.rdoc"
26
+ rdoc.title = "CouchRest: Ruby CouchDB, close to the metal"
27
+ end
28
+ =end
29
+
30
+ desc "Run the rspec"
31
+ task :default => :spec
32
+
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,28 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'couchrest_casted_view'
5
+ s.version = `cat VERSION`.strip
6
+ s.date = '2011-09-05'
7
+ s.authors = ['Adam Collins']
8
+ s.email = 'adam@m104.us'
9
+ s.homepage = 'https://github.com/m104/couchrest_casted_view'
10
+
11
+ s.summary = %q{Provides CouchRest::Database#casted_view}
12
+ s.description = %q{CouchRest casted_view adds a single method to CouchRest::Database that can automatically cast document JSON data as CouchRest::Model objects}
13
+
14
+ s.require_paths = ['lib']
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.extra_rdoc_files = [
18
+ 'LICENSE',
19
+ 'VERSION',
20
+ 'README.md'
21
+ ]
22
+
23
+ s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version=
24
+
25
+ s.add_dependency(%q<couchrest_model>, '~> 1.1')
26
+ s.add_development_dependency(%q<rspec>, '~> 2.6')
27
+ end
28
+
@@ -0,0 +1,31 @@
1
+ module CouchRest
2
+ class Database
3
+ # Just like +view+, but automatically includes the documents
4
+ # in the response and casts each document as a CouchRest::Model
5
+ # class, if possible.
6
+ #
7
+ # Currently, +casted_view+ doesn't support given blocks.
8
+ def casted_view(name, params = {})
9
+ # force the DB response to include documents
10
+ params[:include_docs] = true
11
+ response = view(name, params)
12
+ rows = response['rows']
13
+ return response unless rows
14
+
15
+ response['rows'] = rows.map do |row|
16
+ doc = row['doc']
17
+ type = doc['couchrest-type'] || doc['type']
18
+ if type
19
+ klass = type.constantize
20
+ if klass.respond_to? :build_from_database
21
+ row['doc'] = klass.build_from_database(doc)
22
+ end
23
+ end
24
+ row
25
+ end
26
+
27
+ response
28
+ end
29
+
30
+ end
31
+ end
@@ -0,0 +1,5 @@
1
+ # external requirements
2
+ require 'couchrest_model'
3
+
4
+ # gem requirements
5
+ require 'couchrest/database/casted_view'
@@ -0,0 +1,125 @@
1
+ require File.expand_path("spec_helper", File.dirname(__FILE__))
2
+ require File.expand_path('models/service', FIXTURE_PATH)
3
+ require File.expand_path('models/user', FIXTURE_PATH)
4
+
5
+ describe 'Multi-class view' do
6
+ before(:all) do
7
+ reset_test_db!
8
+
9
+ # load the test cases
10
+
11
+ ['Lawncare', 'Elephant Training', 'Cheese Tasting',
12
+ 'Acrobatic Training', 'Firehydrant Painting',
13
+ 'Clock Winding', 'Remote Finding', 'Chocolate Tasting',
14
+ 'Rabbit Training', 'Propeller Winding'].each do |name|
15
+ Service.new(:name => name).save!
16
+ end
17
+
18
+ ['Brenda Pardone', 'Wendel Covington', 'Bradly P. Buttersby',
19
+ 'Frox', 'Jenny Hammersmithe', 'Shu Lao Chun', 'Waldo',
20
+ 'Michael Pardone', 'Bradly Hammersmithe',
21
+ 'The Other Frox'].each do |name|
22
+ User.new(:name => name).save!
23
+ end
24
+
25
+ # a simple view that splits the 'name' field
26
+ # into words and emits one row per word
27
+ DB.save_doc({
28
+ "_id" => "_design/generic",
29
+ :views => {
30
+ :by_word => {
31
+ :map => <<-JS
32
+ function(doc) {
33
+ if (doc.name && doc.name.length > 0) {
34
+ var words = doc.name.split(/\\W/);
35
+ words.forEach(function(word){
36
+ if (word.length > 0) emit(word, 1);
37
+ });
38
+ }
39
+ }
40
+ JS
41
+ }
42
+ }
43
+ })
44
+ end
45
+
46
+
47
+ describe 'from reference #view' do
48
+ before(:all) do
49
+ @all_rows = DB.view('generic/by_word', :include_docs => true)['rows']
50
+
51
+ @no_rows = DB.view('generic/by_word',
52
+ :include_docs => true,
53
+ :startkey => 'Zanzibar',
54
+ :endkey => 'Zapfino')['rows']
55
+ end
56
+
57
+ it 'should return an Array' do
58
+ @all_rows.class.should == Array
59
+ end
60
+
61
+ it 'should return all of the documents' do
62
+ @all_rows.size.should == 40
63
+ end
64
+
65
+ it 'should return documents as Hashes' do
66
+ @all_rows.each do |row|
67
+ doc = row['doc']
68
+ doc.class.should == Hash
69
+ end
70
+ end
71
+
72
+ it 'should work even when no documents are returned' do
73
+ @no_rows.class.should == Array
74
+ @no_rows.size.should == 0
75
+ end
76
+ end
77
+
78
+
79
+ describe 'from #casted_view' do
80
+ before(:all) do
81
+ @all_rows = DB.casted_view('generic/by_word')['rows']
82
+
83
+ @no_rows = DB.casted_view('generic/by_word',
84
+ :startkey => 'Zanzibar',
85
+ :endkey => 'Zapfino')['rows']
86
+ end
87
+
88
+ it 'should return an Array' do
89
+ @all_rows.class.should == Array
90
+ end
91
+
92
+ it 'should see all documents' do
93
+ @all_rows.size.should == 40
94
+ end
95
+
96
+ it 'should properly cast documents into CouchRest::Model objects' do
97
+ @all_rows.each do |row|
98
+ doc = row['doc']
99
+ doc.class.should == doc['type'].constantize
100
+ end
101
+ end
102
+
103
+ it 'should work even when no documents are returned' do
104
+ @no_rows.class.should == Array
105
+ @no_rows.size.should == 0
106
+ end
107
+
108
+ it "should keep non-CouchRest::Model documents cast as Hashes" do
109
+ DB.save_doc({
110
+ '_id' => 'other-fbenvolio',
111
+ 'name' => 'Francis Benvolio'
112
+ })
113
+
114
+ rows = DB.casted_view('generic/by_word',
115
+ :startkey => 'Francis',
116
+ :endkey => 'Francis')['rows']
117
+ rows.size.should == 1
118
+ doc = rows.first['doc']
119
+ doc['name'].should == 'Francis Benvolio'
120
+ doc['_id'].should == 'other-fbenvolio'
121
+ doc.class.should == Hash
122
+ end
123
+ end
124
+
125
+ end
@@ -0,0 +1,6 @@
1
+ class Service < CouchRest::Model::Base
2
+ use_database DB
3
+
4
+ property :name
5
+ validates_length_of :name, :minimum => 4, :maximum => 20
6
+ end
@@ -0,0 +1,7 @@
1
+ class User < CouchRest::Model::Base
2
+ use_database DB
3
+
4
+ property :name, :accessible => true
5
+ validates_length_of :name, :minimum => 4, :maximum => 20
6
+ end
7
+
@@ -0,0 +1,39 @@
1
+ SPEC_PATH = File.expand_path(File.dirname(__FILE__))
2
+ $:.unshift File.expand_path('../lib', SPEC_PATH) # ensure local lib/ is loaded
3
+
4
+ require "bundler/setup"
5
+ require "rubygems"
6
+ require "couchrest_casted_view"
7
+
8
+ FIXTURE_PATH = File.expand_path('fixtures', SPEC_PATH)
9
+
10
+ COUCHHOST = "http://127.0.0.1:5984"
11
+ TESTDB = 'casted_view-test'
12
+
13
+ TEST_SERVER = CouchRest.new(COUCHHOST)
14
+ TEST_SERVER.default_database = TESTDB
15
+ DB = TEST_SERVER.database(TESTDB)
16
+
17
+
18
+ def reset_test_db!
19
+ DB.recreate! rescue nil
20
+ DB
21
+ end
22
+
23
+
24
+ # set up the before and after testing hooks
25
+ RSpec.configure do |config|
26
+ # start with a fresh database
27
+ config.before(:all) do
28
+ reset_test_db!
29
+ end
30
+
31
+ # delete all testing databases
32
+ config.after(:all) do
33
+ test_dbs = TEST_SERVER.databases.select { |db| db =~ /^#{TESTDB}/ }
34
+ test_dbs.each do |db|
35
+ TEST_SERVER.database(db).delete! rescue nil
36
+ end
37
+ end
38
+ end
39
+
metadata ADDED
@@ -0,0 +1,89 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: couchrest_casted_view
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Adam Collins
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-09-05 00:00:00.000000000 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: couchrest_model
17
+ requirement: &70149122659520 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: '1.1'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *70149122659520
26
+ - !ruby/object:Gem::Dependency
27
+ name: rspec
28
+ requirement: &70149122659060 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '2.6'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: *70149122659060
37
+ description: CouchRest casted_view adds a single method to CouchRest::Database that
38
+ can automatically cast document JSON data as CouchRest::Model objects
39
+ email: adam@m104.us
40
+ executables: []
41
+ extensions: []
42
+ extra_rdoc_files:
43
+ - LICENSE
44
+ - VERSION
45
+ - README.md
46
+ files:
47
+ - .gitignore
48
+ - Gemfile
49
+ - LICENSE
50
+ - README.md
51
+ - Rakefile
52
+ - VERSION
53
+ - couchrest_casted_view.gemspec
54
+ - lib/couchrest/database/casted_view.rb
55
+ - lib/couchrest_casted_view.rb
56
+ - spec/casted_view_spec.rb
57
+ - spec/fixtures/models/service.rb
58
+ - spec/fixtures/models/user.rb
59
+ - spec/spec_helper.rb
60
+ has_rdoc: true
61
+ homepage: https://github.com/m104/couchrest_casted_view
62
+ licenses: []
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ! '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ! '>'
77
+ - !ruby/object:Gem::Version
78
+ version: 1.3.1
79
+ requirements: []
80
+ rubyforge_project:
81
+ rubygems_version: 1.6.2
82
+ signing_key:
83
+ specification_version: 3
84
+ summary: Provides CouchRest::Database#casted_view
85
+ test_files:
86
+ - spec/casted_view_spec.rb
87
+ - spec/fixtures/models/service.rb
88
+ - spec/fixtures/models/user.rb
89
+ - spec/spec_helper.rb