-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcouchrest_extended_document.gemspec
143 lines (138 loc) · 5.77 KB
/
couchrest_extended_document.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{couchrest_extended_document}
s.version = "1.0.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["J. Chris Anderson", "Matt Aimonetti", "Marcos Tapajos", "Will Leinweber", "Sam Lown"]
s.date = %q{2010-08-01}
s.description = %q{CouchRest::ExtendedDocument provides aditional features to the standard CouchRest::Document class such as properties, view designs, callbacks, typecasting and validations.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.md",
"THANKS.md"
]
s.files = [
"LICENSE",
"README.md",
"Rakefile",
"THANKS.md",
"examples/model/example.rb",
"history.txt",
"lib/couchrest/casted_array.rb",
"lib/couchrest/casted_model.rb",
"lib/couchrest/extended_document.rb",
"lib/couchrest/mixins.rb",
"lib/couchrest/mixins/attribute_protection.rb",
"lib/couchrest/mixins/attributes.rb",
"lib/couchrest/mixins/callbacks.rb",
"lib/couchrest/mixins/class_proxy.rb",
"lib/couchrest/mixins/collection.rb",
"lib/couchrest/mixins/design_doc.rb",
"lib/couchrest/mixins/document_queries.rb",
"lib/couchrest/mixins/extended_attachments.rb",
"lib/couchrest/mixins/properties.rb",
"lib/couchrest/mixins/typecast.rb",
"lib/couchrest/mixins/views.rb",
"lib/couchrest/property.rb",
"lib/couchrest/support/couchrest.rb",
"lib/couchrest/support/rails.rb",
"lib/couchrest/validation.rb",
"lib/couchrest/validation/auto_validate.rb",
"lib/couchrest/validation/contextual_validators.rb",
"lib/couchrest/validation/validation_errors.rb",
"lib/couchrest/validation/validators/absent_field_validator.rb",
"lib/couchrest/validation/validators/confirmation_validator.rb",
"lib/couchrest/validation/validators/format_validator.rb",
"lib/couchrest/validation/validators/formats/email.rb",
"lib/couchrest/validation/validators/formats/url.rb",
"lib/couchrest/validation/validators/generic_validator.rb",
"lib/couchrest/validation/validators/length_validator.rb",
"lib/couchrest/validation/validators/method_validator.rb",
"lib/couchrest/validation/validators/numeric_validator.rb",
"lib/couchrest/validation/validators/required_field_validator.rb",
"lib/couchrest_extended_document.rb",
"spec/couchrest/attribute_protection_spec.rb",
"spec/couchrest/casted_extended_doc_spec.rb",
"spec/couchrest/casted_model_spec.rb",
"spec/couchrest/extended_doc_attachment_spec.rb",
"spec/couchrest/extended_doc_inherited_spec.rb",
"spec/couchrest/extended_doc_spec.rb",
"spec/couchrest/extended_doc_subclass_spec.rb",
"spec/couchrest/extended_doc_view_spec.rb",
"spec/couchrest/property_spec.rb",
"spec/fixtures/attachments/README",
"spec/fixtures/attachments/couchdb.png",
"spec/fixtures/attachments/test.html",
"spec/fixtures/more/article.rb",
"spec/fixtures/more/card.rb",
"spec/fixtures/more/cat.rb",
"spec/fixtures/more/course.rb",
"spec/fixtures/more/event.rb",
"spec/fixtures/more/invoice.rb",
"spec/fixtures/more/person.rb",
"spec/fixtures/more/question.rb",
"spec/fixtures/more/service.rb",
"spec/fixtures/more/user.rb",
"spec/fixtures/views/lib.js",
"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.homepage = %q{http://github.com/couchrest/couchrest_extended_document}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Extend CouchRest Document class with useful features.}
s.test_files = [
"spec/couchrest/attribute_protection_spec.rb",
"spec/couchrest/casted_extended_doc_spec.rb",
"spec/couchrest/casted_model_spec.rb",
"spec/couchrest/extended_doc_attachment_spec.rb",
"spec/couchrest/extended_doc_inherited_spec.rb",
"spec/couchrest/extended_doc_spec.rb",
"spec/couchrest/extended_doc_subclass_spec.rb",
"spec/couchrest/extended_doc_view_spec.rb",
"spec/couchrest/property_spec.rb",
"spec/fixtures/more/article.rb",
"spec/fixtures/more/card.rb",
"spec/fixtures/more/cat.rb",
"spec/fixtures/more/course.rb",
"spec/fixtures/more/event.rb",
"spec/fixtures/more/invoice.rb",
"spec/fixtures/more/person.rb",
"spec/fixtures/more/question.rb",
"spec/fixtures/more/service.rb",
"spec/fixtures/more/user.rb",
"spec/spec_helper.rb",
"examples/model/example.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<couchrest>, [">= 1.0.0"])
s.add_runtime_dependency(%q<mime-types>, [">= 1.15"])
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.0"])
s.add_runtime_dependency(%q<builder>, [">= 2.1.2"])
else
s.add_dependency(%q<couchrest>, [">= 1.0.0"])
s.add_dependency(%q<mime-types>, [">= 1.15"])
s.add_dependency(%q<activesupport>, [">= 2.3.0"])
s.add_dependency(%q<builder>, [">= 2.1.2"])
end
else
s.add_dependency(%q<couchrest>, [">= 1.0.0"])
s.add_dependency(%q<mime-types>, [">= 1.15"])
s.add_dependency(%q<activesupport>, [">= 2.3.0"])
s.add_dependency(%q<builder>, [">= 2.1.2"])
end
end