langalex / couch_potato
- Source
- Commits
- Network (24)
- Issues (6)
- Downloads (21)
- Wiki (2)
- Graphs
-
Tree:
04fe642
commit 04fe64263e1e5497206727b3feebe980b394d845
tree 23bdbb2c44c28baac2c534b26c3215494c4708cc
parent e1b00ec12d3f9ebeef5d703f94a822a711a057ed
tree 23bdbb2c44c28baac2c534b26c3215494c4708cc
parent e1b00ec12d3f9ebeef5d703f94a822a711a057ed
couch_potato / couch_potato.gemspec
| ca834dbc » | langalex | 2009-02-15 | 1 | # -*- encoding: utf-8 -*- | |
| 2 | |||||
| dc02324f » | Alexander Lang | 2008-10-27 | 3 | Gem::Specification.new do |s| | |
| ca834dbc » | langalex | 2009-02-15 | 4 | s.name = %q{couch_potato} | |
| e9836b2b » | Julian O'Brien | 2009-06-04 | 5 | s.version = "0.2.7" | |
| ca834dbc » | langalex | 2009-02-15 | 6 | ||
| 7 | s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||||
| 8 | s.authors = ["Alexander Lang"] | ||||
| 04fe6426 » | langalex | 2009-06-15 | 9 | s.date = %q{2009-06-15} | |
| ca834dbc » | langalex | 2009-02-15 | 10 | s.description = %q{Ruby persistence layer for CouchDB} | |
| 11 | s.email = %q{alex@upstream-berlin.com} | ||||
| 751e67ba » | langalex | 2009-05-19 | 12 | s.extra_rdoc_files = [ | |
| 13 | "README.md" | ||||
| 14 | ] | ||||
| 15 | s.files = [ | ||||
| 16 | "MIT-LICENSE.txt", | ||||
| 17 | "README.md", | ||||
| 18 | "VERSION.yml", | ||||
| 19 | "init.rb", | ||||
| 20 | "lib/core_ext/date.rb", | ||||
| 21 | "lib/core_ext/object.rb", | ||||
| 22 | "lib/core_ext/string.rb", | ||||
| fe23735c » | Benjamin Behr | 2009-06-11 | 23 | "lib/core_ext/symbol.rb", | |
| 751e67ba » | langalex | 2009-05-19 | 24 | "lib/core_ext/time.rb", | |
| 25 | "lib/couch_potato.rb", | ||||
| 26 | "lib/couch_potato/database.rb", | ||||
| 27 | "lib/couch_potato/persistence.rb", | ||||
| 28 | "lib/couch_potato/persistence/belongs_to_property.rb", | ||||
| 29 | "lib/couch_potato/persistence/callbacks.rb", | ||||
| 30 | "lib/couch_potato/persistence/dirty_attributes.rb", | ||||
| 31 | "lib/couch_potato/persistence/json.rb", | ||||
| 32 | "lib/couch_potato/persistence/magic_timestamps.rb", | ||||
| 33 | "lib/couch_potato/persistence/properties.rb", | ||||
| 34 | "lib/couch_potato/persistence/simple_property.rb", | ||||
| 04fe6426 » | langalex | 2009-06-15 | 35 | "lib/couch_potato/persistence/validation.rb", | |
| 751e67ba » | langalex | 2009-05-19 | 36 | "lib/couch_potato/view/base_view_spec.rb", | |
| 37 | "lib/couch_potato/view/custom_view_spec.rb", | ||||
| 38 | "lib/couch_potato/view/custom_views.rb", | ||||
| 39 | "lib/couch_potato/view/model_view_spec.rb", | ||||
| 40 | "lib/couch_potato/view/properties_view_spec.rb", | ||||
| 41 | "lib/couch_potato/view/raw_view_spec.rb", | ||||
| 42 | "lib/couch_potato/view/view_query.rb", | ||||
| 43 | "rails/init.rb", | ||||
| 44 | "spec/callbacks_spec.rb", | ||||
| 45 | "spec/create_spec.rb", | ||||
| 46 | "spec/custom_view_spec.rb", | ||||
| 47 | "spec/destroy_spec.rb", | ||||
| 04fe6426 » | langalex | 2009-06-15 | 48 | "spec/fixtures/address.rb", | |
| 49 | "spec/fixtures/person.rb", | ||||
| 751e67ba » | langalex | 2009-05-19 | 50 | "spec/property_spec.rb", | |
| 51 | "spec/spec.opts", | ||||
| 52 | "spec/spec_helper.rb", | ||||
| 53 | "spec/unit/attributes_spec.rb", | ||||
| 04fe6426 » | langalex | 2009-06-15 | 54 | "spec/unit/callbacks_spec.rb", | |
| 751e67ba » | langalex | 2009-05-19 | 55 | "spec/unit/create_spec.rb", | |
| e0553fc5 » | langalex | 2009-05-21 | 56 | "spec/unit/customs_views_spec.rb", | |
| 751e67ba » | langalex | 2009-05-19 | 57 | "spec/unit/database_spec.rb", | |
| 58 | "spec/unit/dirty_attributes_spec.rb", | ||||
| 59 | "spec/unit/string_spec.rb", | ||||
| 60 | "spec/unit/view_query_spec.rb", | ||||
| 61 | "spec/update_spec.rb" | ||||
| 62 | ] | ||||
| ca834dbc » | langalex | 2009-02-15 | 63 | s.has_rdoc = true | |
| 64 | s.homepage = %q{http://github.com/langalex/couch_potato} | ||||
| 751e67ba » | langalex | 2009-05-19 | 65 | s.rdoc_options = ["--charset=UTF-8"] | |
| ca834dbc » | langalex | 2009-02-15 | 66 | s.require_paths = ["lib"] | |
| 67 | s.rubygems_version = %q{1.3.1} | ||||
| 68 | s.summary = %q{Ruby persistence layer for CouchDB} | ||||
| 751e67ba » | langalex | 2009-05-19 | 69 | s.test_files = [ | |
| 70 | "spec/callbacks_spec.rb", | ||||
| 71 | "spec/create_spec.rb", | ||||
| 72 | "spec/custom_view_spec.rb", | ||||
| 73 | "spec/destroy_spec.rb", | ||||
| 04fe6426 » | langalex | 2009-06-15 | 74 | "spec/fixtures/address.rb", | |
| 75 | "spec/fixtures/person.rb", | ||||
| 751e67ba » | langalex | 2009-05-19 | 76 | "spec/property_spec.rb", | |
| 77 | "spec/spec_helper.rb", | ||||
| 78 | "spec/unit/attributes_spec.rb", | ||||
| 04fe6426 » | langalex | 2009-06-15 | 79 | "spec/unit/callbacks_spec.rb", | |
| 751e67ba » | langalex | 2009-05-19 | 80 | "spec/unit/create_spec.rb", | |
| e0553fc5 » | langalex | 2009-05-21 | 81 | "spec/unit/customs_views_spec.rb", | |
| 751e67ba » | langalex | 2009-05-19 | 82 | "spec/unit/database_spec.rb", | |
| 83 | "spec/unit/dirty_attributes_spec.rb", | ||||
| 84 | "spec/unit/string_spec.rb", | ||||
| 85 | "spec/unit/view_query_spec.rb", | ||||
| 86 | "spec/update_spec.rb" | ||||
| 87 | ] | ||||
| ca834dbc » | langalex | 2009-02-15 | 88 | ||
| 89 | if s.respond_to? :specification_version then | ||||
| 90 | current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | ||||
| 91 | s.specification_version = 2 | ||||
| 92 | |||||
| 93 | if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||||
| 3e624ec4 » | langalex | 2009-04-27 | 94 | s.add_runtime_dependency(%q<json>, [">= 0"]) | |
| 95 | s.add_runtime_dependency(%q<validatable>, [">= 0"]) | ||||
| 4b5444be » | langalex | 2009-05-04 | 96 | s.add_runtime_dependency(%q<couchrest>, [">= 0.24"]) | |
| ca834dbc » | langalex | 2009-02-15 | 97 | else | |
| 3e624ec4 » | langalex | 2009-04-27 | 98 | s.add_dependency(%q<json>, [">= 0"]) | |
| 99 | s.add_dependency(%q<validatable>, [">= 0"]) | ||||
| 4b5444be » | langalex | 2009-05-04 | 100 | s.add_dependency(%q<couchrest>, [">= 0.24"]) | |
| ca834dbc » | langalex | 2009-02-15 | 101 | end | |
| 102 | else | ||||
| 3e624ec4 » | langalex | 2009-04-27 | 103 | s.add_dependency(%q<json>, [">= 0"]) | |
| 104 | s.add_dependency(%q<validatable>, [">= 0"]) | ||||
| 4b5444be » | langalex | 2009-05-04 | 105 | s.add_dependency(%q<couchrest>, [">= 0.24"]) | |
| ca834dbc » | langalex | 2009-02-15 | 106 | end | |
| 107 | end | ||||
