forked from peritor/simply_stored
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimply_stored.gemspec
76 lines (72 loc) · 2.65 KB
/
simply_stored.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
# 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{simply_stored}
s.version = "1.0.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Mathias Meyer, Jonathan Weiss"]
s.date = %q{2012-05-22}
s.description = %q{Convenience layer for CouchDB on top of CouchPotato.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
"CHANGELOG.md",
"LICENSE.txt",
"README.md",
"lib/simply_stored.rb",
"lib/simply_stored/class_methods_base.rb",
"lib/simply_stored/include_relation.rb",
"lib/simply_stored/couch.rb",
"lib/simply_stored/couch/association_property.rb",
"lib/simply_stored/couch/database.rb",
"lib/simply_stored/couch/ancestry.rb",
"lib/simply_stored/couch/belongs_to.rb",
"lib/simply_stored/couch/embedded_in.rb",
"lib/simply_stored/couch/ext/couch_potato.rb",
"lib/simply_stored/couch/find_by.rb",
"lib/simply_stored/couch/finders.rb",
"lib/simply_stored/couch/has_and_belongs_to_many.rb",
"lib/simply_stored/couch/has_many.rb",
"lib/simply_stored/couch/has_many_embedded.rb",
"lib/simply_stored/couch/has_one.rb",
"lib/simply_stored/couch/properties.rb",
"lib/simply_stored/couch/validations.rb",
"lib/simply_stored/couch/pagination.rb",
"lib/simply_stored/couch/pagination_options.rb",
"lib/simply_stored/couch/views.rb",
"lib/simply_stored/couch/views/array_property_view_spec.rb",
"lib/simply_stored/couch/views/deleted_model_view_spec.rb",
"lib/simply_stored/instance_methods.rb",
"lib/simply_stored/rake.rb",
"lib/simply_stored/storage.rb",
"lib/simply_stored/locale/en.yml"
]
s.homepage = %q{http://github.com/peritor/simply_stored}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.8.24}
s.summary = %q{Convenience layer for CouchDB}
s.test_files = [
"test/belongs_to_test.rb",
"test/conflict_handling_test.rb",
"test/finder_test.rb",
"test/fixtures/couch.rb",
"test/has_and_belongs_to_many_test.rb",
"test/has_many_test.rb",
"test/has_one_test.rb",
"test/instance_lifecycle_test.rb",
"test/mass_assignment_protection_test.rb",
"test/s3_test.rb",
"test/soft_deletable_test.rb",
"test/test_helper.rb",
"test/validations_test.rb",
"test/views_test.rb"
]
s.add_dependency("couch_potato", ">= 1.7.0")
s.add_dependency("activesupport", ">= 0")
end