dm-adapter-simpledb 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dm-adapter-simpledb
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jeremy Boles
8
+ - Edward Ocampo-Gooding
9
+ - Dan Mayer
10
+ - Thomas Olausson
11
+ - Avdi Grimm
12
+ autorequire:
13
+ bindir: bin
14
+ cert_chain: []
15
+
16
+ date: 2009-11-16 00:00:00 -05:00
17
+ default_executable:
18
+ dependencies:
19
+ - !ruby/object:Gem::Dependency
20
+ name: dm-core
21
+ type: :runtime
22
+ version_requirement:
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: 0.10.0
28
+ version:
29
+ - !ruby/object:Gem::Dependency
30
+ name: dm-aggregates
31
+ type: :runtime
32
+ version_requirement:
33
+ version_requirements: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.10.0
38
+ version:
39
+ - !ruby/object:Gem::Dependency
40
+ name: uuidtools
41
+ type: :runtime
42
+ version_requirement:
43
+ version_requirements: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: "2.0"
48
+ version:
49
+ - !ruby/object:Gem::Dependency
50
+ name: right_aws
51
+ type: :runtime
52
+ version_requirement:
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ~>
56
+ - !ruby/object:Gem::Version
57
+ version: "1.10"
58
+ version:
59
+ description: |
60
+ A DataMapper adapter for Amazon's SimpleDB service.
61
+
62
+ Features:
63
+ * Uses the RightAWS gem for efficient SimpleDB operations.
64
+ * Full set of CRUD operations
65
+ * Supports all DataMapper query predicates.
66
+ * Can translate many queries into efficient native SELECT operations.
67
+ * Migrations
68
+ * DataMapper identity map support for record caching
69
+ * Lazy-loaded attributes
70
+ * DataMapper Serial property support via UUIDs.
71
+ * Array properties
72
+ * Basic aggregation support (Model.count("..."))
73
+ * String "chunking" permits attributes to exceed the 1024-byte limit
74
+
75
+ Note: as of version 1.0.0, this gem supports supports the DataMapper 0.10.*
76
+ series and breaks backwards compatibility with DataMapper 0.9.*.
77
+
78
+ email: devs@devver.net
79
+ executables: []
80
+
81
+ extensions: []
82
+
83
+ extra_rdoc_files:
84
+ - README
85
+ files:
86
+ - .autotest
87
+ - .gitignore
88
+ - README
89
+ - Rakefile
90
+ - VERSION
91
+ - aws_config.sample
92
+ - dm-adapter-simpledb.gemspec
93
+ - lib/simpledb_adapter.rb
94
+ - lib/simpledb_adapter/sdb_array.rb
95
+ - scripts/simple_benchmark.rb
96
+ - spec/associations_spec.rb
97
+ - spec/compliance_spec.rb
98
+ - spec/date_spec.rb
99
+ - spec/limit_and_order_spec.rb
100
+ - spec/migrations_spec.rb
101
+ - spec/multiple_records_spec.rb
102
+ - spec/nils_spec.rb
103
+ - spec/sdb_array_spec.rb
104
+ - spec/simpledb_adapter_spec.rb
105
+ - spec/spec.opts
106
+ - spec/spec_helper.rb
107
+ - tasks/devver.rake
108
+ has_rdoc: true
109
+ homepage: http://github.com/devver/dm-adapter-simpledb
110
+ licenses: []
111
+
112
+ post_install_message:
113
+ rdoc_options:
114
+ - --charset=UTF-8
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: "0"
122
+ version:
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: "0"
128
+ version:
129
+ requirements: []
130
+
131
+ rubyforge_project:
132
+ rubygems_version: 1.3.5
133
+ signing_key:
134
+ specification_version: 3
135
+ summary: DataMapper adapter for Amazon SimpleDB
136
+ test_files:
137
+ - spec/nils_spec.rb
138
+ - spec/limit_and_order_spec.rb
139
+ - spec/compliance_spec.rb
140
+ - spec/simpledb_adapter_spec.rb
141
+ - spec/date_spec.rb
142
+ - spec/sdb_array_spec.rb
143
+ - spec/migrations_spec.rb
144
+ - spec/spec_helper.rb
145
+ - spec/multiple_records_spec.rb
146
+ - spec/associations_spec.rb