public
Description: ruby persistence layer for CouchDB.
Homepage: http://langalex.github.com/couch_potato
Clone URL: git://github.com/langalex/couch_potato.git
couch_potato / couch_potato.gemspec
100644 127 lines (121 sloc) 4.453 kb
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
# 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{couch_potato}
  s.version = "0.2.15"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Alexander Lang"]
  s.date = %q{2009-11-09}
  s.description = %q{Ruby persistence layer for CouchDB}
  s.email = %q{alex@upstream-berlin.com}
  s.extra_rdoc_files = [
    "README.md"
  ]
  s.files = [
    "CHANGES.md",
     "MIT-LICENSE.txt",
     "README.md",
     "VERSION.yml",
     "init.rb",
     "lib/core_ext/date.rb",
     "lib/core_ext/object.rb",
     "lib/core_ext/string.rb",
     "lib/core_ext/symbol.rb",
     "lib/core_ext/time.rb",
     "lib/couch_potato.rb",
     "lib/couch_potato/database.rb",
     "lib/couch_potato/persistence.rb",
     "lib/couch_potato/persistence/attachments.rb",
     "lib/couch_potato/persistence/callbacks.rb",
     "lib/couch_potato/persistence/dirty_attributes.rb",
     "lib/couch_potato/persistence/ghost_attributes.rb",
     "lib/couch_potato/persistence/json.rb",
     "lib/couch_potato/persistence/magic_timestamps.rb",
     "lib/couch_potato/persistence/properties.rb",
     "lib/couch_potato/persistence/simple_property.rb",
     "lib/couch_potato/persistence/validation.rb",
     "lib/couch_potato/rspec/matchers.rb",
     "lib/couch_potato/rspec/matchers/map_to_matcher.rb",
     "lib/couch_potato/rspec/matchers/print_r.js",
     "lib/couch_potato/rspec/matchers/reduce_to_matcher.rb",
     "lib/couch_potato/view/base_view_spec.rb",
     "lib/couch_potato/view/custom_view_spec.rb",
     "lib/couch_potato/view/custom_views.rb",
     "lib/couch_potato/view/model_view_spec.rb",
     "lib/couch_potato/view/properties_view_spec.rb",
     "lib/couch_potato/view/raw_view_spec.rb",
     "lib/couch_potato/view/view_query.rb",
     "rails/init.rb",
     "spec/attachments_spec.rb",
     "spec/callbacks_spec.rb",
     "spec/create_spec.rb",
     "spec/custom_view_spec.rb",
     "spec/default_property_spec.rb",
     "spec/destroy_spec.rb",
     "spec/fixtures/address.rb",
     "spec/fixtures/person.rb",
     "spec/property_spec.rb",
     "spec/spec.opts",
     "spec/spec_helper.rb",
     "spec/unit/attributes_spec.rb",
     "spec/unit/callbacks_spec.rb",
     "spec/unit/couch_potato_spec.rb",
     "spec/unit/create_spec.rb",
     "spec/unit/customs_views_spec.rb",
     "spec/unit/database_spec.rb",
     "spec/unit/dirty_attributes_spec.rb",
     "spec/unit/json_create_id_spec.rb",
     "spec/unit/rspec_matchers_spec.rb",
     "spec/unit/string_spec.rb",
     "spec/unit/view_query_spec.rb",
     "spec/update_spec.rb"
  ]
  s.homepage = %q{http://github.com/langalex/couch_potato}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{Ruby persistence layer for CouchDB}
  s.test_files = [
    "spec/attachments_spec.rb",
     "spec/callbacks_spec.rb",
     "spec/create_spec.rb",
     "spec/custom_view_spec.rb",
     "spec/default_property_spec.rb",
     "spec/destroy_spec.rb",
     "spec/fixtures/address.rb",
     "spec/fixtures/person.rb",
     "spec/property_spec.rb",
     "spec/spec_helper.rb",
     "spec/unit/attributes_spec.rb",
     "spec/unit/callbacks_spec.rb",
     "spec/unit/couch_potato_spec.rb",
     "spec/unit/create_spec.rb",
     "spec/unit/customs_views_spec.rb",
     "spec/unit/database_spec.rb",
     "spec/unit/dirty_attributes_spec.rb",
     "spec/unit/json_create_id_spec.rb",
     "spec/unit/rspec_matchers_spec.rb",
     "spec/unit/string_spec.rb",
     "spec/unit/view_query_spec.rb",
     "spec/update_spec.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<json>, [">= 0"])
      s.add_runtime_dependency(%q<validatable>, [">= 0"])
      s.add_runtime_dependency(%q<couchrest>, [">= 0.24"])
    else
      s.add_dependency(%q<json>, [">= 0"])
      s.add_dependency(%q<validatable>, [">= 0"])
      s.add_dependency(%q<couchrest>, [">= 0.24"])
    end
  else
    s.add_dependency(%q<json>, [">= 0"])
    s.add_dependency(%q<validatable>, [">= 0"])
    s.add_dependency(%q<couchrest>, [">= 0.24"])
  end
end