tiny_ds 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README.rdoc +25 -0
- data/Rakefile +45 -0
- data/lib/tiny_ds/base.rb +290 -0
- data/lib/tiny_ds/base.rb~ +115 -0
- data/lib/tiny_ds/base_tx.rb +161 -0
- data/lib/tiny_ds/base_tx.rb~ +180 -0
- data/lib/tiny_ds/low_ds.rb +77 -0
- data/lib/tiny_ds/low_ds.rb~ +80 -0
- data/lib/tiny_ds/property_definition.rb +68 -0
- data/lib/tiny_ds/property_definition.rb~ +54 -0
- data/lib/tiny_ds/query.rb +76 -0
- data/lib/tiny_ds/query.rb~ +68 -0
- data/lib/tiny_ds/validations.rb +26 -0
- data/lib/tiny_ds/validations.rb~ +9 -0
- data/lib/tiny_ds/version.rb +3 -0
- data/lib/tiny_ds.rb +16 -0
- data/lib/tiny_ds.rb~ +2 -0
- data/lib/tinyds.rb~ +2 -0
- data/spec/basic_spec.rb +648 -0
- data/spec/spec_helper.rb +54 -0
- data/spec/spec_helper.rb~ +0 -0
- metadata +86 -0
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tiny_ds
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Takeru Sasaki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-01-04 00:00:00 +09:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: appengine-apis
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: Tiny datastore library for Google App Engine with JRuby
|
26
|
+
email: sasaki.takeru@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.rdoc
|
33
|
+
- LICENSE
|
34
|
+
files:
|
35
|
+
- LICENSE
|
36
|
+
- README.rdoc
|
37
|
+
- Rakefile
|
38
|
+
- spec/basic_spec.rb
|
39
|
+
- spec/spec_helper.rb
|
40
|
+
- spec/spec_helper.rb~
|
41
|
+
- lib/tiny_ds/base.rb
|
42
|
+
- lib/tiny_ds/base.rb~
|
43
|
+
- lib/tiny_ds/base_tx.rb
|
44
|
+
- lib/tiny_ds/base_tx.rb~
|
45
|
+
- lib/tiny_ds/low_ds.rb
|
46
|
+
- lib/tiny_ds/low_ds.rb~
|
47
|
+
- lib/tiny_ds/property_definition.rb
|
48
|
+
- lib/tiny_ds/property_definition.rb~
|
49
|
+
- lib/tiny_ds/query.rb
|
50
|
+
- lib/tiny_ds/query.rb~
|
51
|
+
- lib/tiny_ds/validations.rb
|
52
|
+
- lib/tiny_ds/validations.rb~
|
53
|
+
- lib/tiny_ds/version.rb
|
54
|
+
- lib/tiny_ds.rb
|
55
|
+
- lib/tiny_ds.rb~
|
56
|
+
- lib/tinyds.rb~
|
57
|
+
has_rdoc: true
|
58
|
+
homepage: http://github.com/takeru/tiny_ds
|
59
|
+
licenses: []
|
60
|
+
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: "0"
|
71
|
+
version:
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: "0"
|
77
|
+
version:
|
78
|
+
requirements: []
|
79
|
+
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 1.3.5
|
82
|
+
signing_key:
|
83
|
+
specification_version: 3
|
84
|
+
summary: Supports CRUD like a ActiveRecord or DataMapepr but with parent/child and entity-group-transaction
|
85
|
+
test_files: []
|
86
|
+
|