langalex / couch_potato

ruby persistence layer for CouchDB.

This URL has Read+Write access

couch_potato / couch_potato.gemspec
100644 100 lines (95 sloc) 3.394 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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{couch_potato}
  s.version = "0.2.6"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Alexander Lang"]
  s.date = %q{2009-05-21}
  s.description = %q{Ruby persistence layer for CouchDB}
  s.email = %q{alex@upstream-berlin.com}
  s.extra_rdoc_files = [
    "README.md"
  ]
  s.files = [
    "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/time.rb",
     "lib/couch_potato.rb",
     "lib/couch_potato/database.rb",
     "lib/couch_potato/persistence.rb",
     "lib/couch_potato/persistence/belongs_to_property.rb",
     "lib/couch_potato/persistence/callbacks.rb",
     "lib/couch_potato/persistence/dirty_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/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/callbacks_spec.rb",
     "spec/create_spec.rb",
     "spec/custom_view_spec.rb",
     "spec/destroy_spec.rb",
     "spec/property_spec.rb",
     "spec/spec.opts",
     "spec/spec_helper.rb",
     "spec/unit/attributes_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/string_spec.rb",
     "spec/unit/view_query_spec.rb",
     "spec/update_spec.rb"
  ]
  s.has_rdoc = true
  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.1}
  s.summary = %q{Ruby persistence layer for CouchDB}
  s.test_files = [
    "spec/callbacks_spec.rb",
     "spec/create_spec.rb",
     "spec/custom_view_spec.rb",
     "spec/destroy_spec.rb",
     "spec/property_spec.rb",
     "spec/spec_helper.rb",
     "spec/unit/attributes_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/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 = 2
 
    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