├── .document ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.rdoc ├── Rakefile ├── bin └── orientdb_console ├── lib ├── jars │ ├── blueprints-core-2.5.0.jar │ ├── commons-configuration-1.9.jar │ ├── concurrentlinkedhashmap-lru-1.4.jar │ ├── gremlin-java-2.5.0.jar │ ├── jna-4.0.0.jar │ ├── orient-commons-1.7.8.jar │ ├── orientdb-client-1.7.8.jar │ ├── orientdb-core-1.7.8.jar │ ├── orientdb-distributed-1.7.8.jar │ ├── orientdb-enterprise-1.7.8.jar │ ├── orientdb-graphdb-1.7.8.jar │ ├── orientdb-nativeos-1.7.8.jar │ ├── orientdb-object-1.7.8.jar │ ├── orientdb-server-1.7.8.jar │ ├── orientdb-tools-1.7.8.jar │ ├── pipes-2.5.0.jar │ └── snappy-java-1.1.0.1.jar ├── orientdb.rb └── orientdb │ ├── constants.rb │ ├── database.rb │ ├── document.rb │ ├── ext.rb │ ├── oclass.rb │ ├── property.rb │ ├── record.rb │ ├── rid.rb │ ├── schema.rb │ ├── sql.rb │ ├── sql │ ├── common.rb │ ├── delete.rb │ ├── ext.rb │ ├── insert.rb │ ├── query.rb │ └── update.rb │ ├── storage.rb │ └── version.rb ├── orientdb.gemspec └── spec ├── database_spec.rb ├── document_spec.rb ├── gremlin_spec.rb ├── orientdb_spec.rb ├── spec.opts ├── spec_basic_helper.rb ├── spec_helper.rb ├── sql_spec.rb └── tinkerpop_graph_spec.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/orientdb_console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/bin/orientdb_console -------------------------------------------------------------------------------- /lib/jars/blueprints-core-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/blueprints-core-2.5.0.jar -------------------------------------------------------------------------------- /lib/jars/commons-configuration-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/commons-configuration-1.9.jar -------------------------------------------------------------------------------- /lib/jars/concurrentlinkedhashmap-lru-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/concurrentlinkedhashmap-lru-1.4.jar -------------------------------------------------------------------------------- /lib/jars/gremlin-java-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/gremlin-java-2.5.0.jar -------------------------------------------------------------------------------- /lib/jars/jna-4.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/jna-4.0.0.jar -------------------------------------------------------------------------------- /lib/jars/orient-commons-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orient-commons-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-client-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-client-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-core-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-core-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-distributed-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-distributed-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-enterprise-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-enterprise-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-graphdb-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-graphdb-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-nativeos-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-nativeos-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-object-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-object-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-server-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-server-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/orientdb-tools-1.7.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/orientdb-tools-1.7.8.jar -------------------------------------------------------------------------------- /lib/jars/pipes-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/pipes-2.5.0.jar -------------------------------------------------------------------------------- /lib/jars/snappy-java-1.1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/jars/snappy-java-1.1.0.1.jar -------------------------------------------------------------------------------- /lib/orientdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb.rb -------------------------------------------------------------------------------- /lib/orientdb/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/constants.rb -------------------------------------------------------------------------------- /lib/orientdb/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/database.rb -------------------------------------------------------------------------------- /lib/orientdb/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/document.rb -------------------------------------------------------------------------------- /lib/orientdb/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/ext.rb -------------------------------------------------------------------------------- /lib/orientdb/oclass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/oclass.rb -------------------------------------------------------------------------------- /lib/orientdb/property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/property.rb -------------------------------------------------------------------------------- /lib/orientdb/record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/record.rb -------------------------------------------------------------------------------- /lib/orientdb/rid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/rid.rb -------------------------------------------------------------------------------- /lib/orientdb/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/schema.rb -------------------------------------------------------------------------------- /lib/orientdb/sql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/sql.rb -------------------------------------------------------------------------------- /lib/orientdb/sql/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/sql/common.rb -------------------------------------------------------------------------------- /lib/orientdb/sql/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/sql/delete.rb -------------------------------------------------------------------------------- /lib/orientdb/sql/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/sql/ext.rb -------------------------------------------------------------------------------- /lib/orientdb/sql/insert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/sql/insert.rb -------------------------------------------------------------------------------- /lib/orientdb/sql/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/sql/query.rb -------------------------------------------------------------------------------- /lib/orientdb/sql/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/sql/update.rb -------------------------------------------------------------------------------- /lib/orientdb/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/lib/orientdb/storage.rb -------------------------------------------------------------------------------- /lib/orientdb/version.rb: -------------------------------------------------------------------------------- 1 | module OrientDB 2 | VERSION = '1.7.8' 3 | end 4 | -------------------------------------------------------------------------------- /orientdb.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/orientdb.gemspec -------------------------------------------------------------------------------- /spec/database_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/database_spec.rb -------------------------------------------------------------------------------- /spec/document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/document_spec.rb -------------------------------------------------------------------------------- /spec/gremlin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/gremlin_spec.rb -------------------------------------------------------------------------------- /spec/orientdb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/orientdb_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_basic_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/spec_basic_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/sql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/sql_spec.rb -------------------------------------------------------------------------------- /spec/tinkerpop_graph_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aemadrid/orientdb-jruby/HEAD/spec/tinkerpop_graph_spec.rb --------------------------------------------------------------------------------