orientdb 0.0.8-jruby → 0.0.9-jruby
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/orientdb.rb +1 -0
- data/lib/orientdb/constants.rb +1 -1
- data/lib/orientdb/database.rb +4 -47
- data/lib/orientdb/document.rb +0 -1
- data/lib/orientdb/oclass.rb +2 -7
- data/lib/orientdb/sql.rb +277 -0
- data/lib/orientdb/sql_ext.rb +240 -0
- data/orientdb.gemspec +7 -3
- data/spec/database_spec.rb +25 -19
- data/spec/spec_basic_helper.rb +25 -0
- data/spec/spec_helper.rb +2 -15
- data/spec/sql_spec.rb +666 -0
- metadata +7 -3
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 9
|
9
|
+
version: 0.0.9
|
10
10
|
platform: jruby
|
11
11
|
authors:
|
12
12
|
- Adrian Madrid
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2011-01-
|
17
|
+
date: 2011-01-17 00:00:00 -07:00
|
18
18
|
default_executable: orientdb_console
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -78,6 +78,8 @@ files:
|
|
78
78
|
- lib/orientdb/property.rb
|
79
79
|
- lib/orientdb/record.rb
|
80
80
|
- lib/orientdb/schema.rb
|
81
|
+
- lib/orientdb/sql.rb
|
82
|
+
- lib/orientdb/sql_ext.rb
|
81
83
|
- lib/orientdb/sql_query.rb
|
82
84
|
- lib/orientdb/storage.rb
|
83
85
|
- lib/orientdb/user.rb
|
@@ -87,7 +89,9 @@ files:
|
|
87
89
|
- spec/document_spec.rb
|
88
90
|
- spec/orientdb_spec.rb
|
89
91
|
- spec/spec.opts
|
92
|
+
- spec/spec_basic_helper.rb
|
90
93
|
- spec/spec_helper.rb
|
94
|
+
- spec/sql_spec.rb
|
91
95
|
has_rdoc: true
|
92
96
|
homepage: http://rubygems.org/gems/orientdb
|
93
97
|
licenses: []
|