-
Notifications
You must be signed in to change notification settings - Fork 16
/
simply_stored.gemspec
90 lines (86 loc) · 3.2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "simply_stored"
s.version = "0.8.0"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Mathias Meyer, Jonathan Weiss"]
s.date = "2012-05-29"
s.description = "Convenience layer for CouchDB on top of CouchPotato."
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
"CHANGELOG.md",
"Gemfile.lock",
"LICENSE.txt",
"README.md",
"lib/simply_stored.rb",
"lib/simply_stored/class_methods_base.rb",
"lib/simply_stored/couch.rb",
"lib/simply_stored/couch/association_property.rb",
"lib/simply_stored/couch/belongs_to.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_one.rb",
"lib/simply_stored/couch/locale/en.yml",
"lib/simply_stored/couch/properties.rb",
"lib/simply_stored/couch/validations.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"
]
s.homepage = "http://github.com/peritor/simply_stored"
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Convenience layer for CouchDB"
s.test_files = [
"test/active_model_compatibility_test.rb",
"test/belongs_to_test.rb",
"test/conflict_handling_test.rb",
"test/dirty_tracking_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/retry_on_error_test.rb",
"test/s3_test.rb",
"test/soft_deletable_test.rb",
"test/test_helper.rb",
"test/validations_test.rb",
"test/views_test.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rest-client>, [">= 1.4.2"])
s.add_runtime_dependency(%q<couch_potato>, [">= 0.2.15"])
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
s.add_runtime_dependency(%q<mattmatt-validatable>, [">= 0"])
else
s.add_dependency(%q<rest-client>, [">= 1.4.2"])
s.add_dependency(%q<couch_potato>, [">= 0.2.15"])
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<mattmatt-validatable>, [">= 0"])
end
else
s.add_dependency(%q<rest-client>, [">= 1.4.2"])
s.add_dependency(%q<couch_potato>, [">= 0.2.15"])
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<mattmatt-validatable>, [">= 0"])
end
end