orientdb 0.0.9-jruby → 0.0.10-jruby
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/VERSION +1 -1
- data/lib/orientdb/sql.rb +0 -5
- data/orientdb.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.10
|
data/lib/orientdb/sql.rb
CHANGED
@@ -10,7 +10,6 @@ module OrientDB
|
|
10
10
|
def initialize(type)
|
11
11
|
@type = type
|
12
12
|
@conditions = []
|
13
|
-
add(conds) if conds
|
14
13
|
end
|
15
14
|
|
16
15
|
def type
|
@@ -219,10 +218,6 @@ module OrientDB
|
|
219
218
|
"'#{str}'"
|
220
219
|
end
|
221
220
|
|
222
|
-
def quote(value)
|
223
|
-
self.class.quote value
|
224
|
-
end
|
225
|
-
|
226
221
|
private
|
227
222
|
|
228
223
|
def select_sql
|
data/orientdb.gemspec
CHANGED