This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
orientdb.gemspec
105 lines (100 loc) · 3.35 KB
/
orientdb.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "orientdb"
s.version = "1.7.8"
s.platform = "java"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Adrian Madrid"]
s.date = "2014-09-15"
s.description = "Simple JRuby wrapper for the OrientDB."
s.email = "[email protected]"
s.executables = ["orientdb_console"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.rdoc",
"Rakefile",
"bin/orientdb_console",
"lib/jars/blueprints-core-2.5.0.jar",
"lib/jars/commons-configuration-1.9.jar",
"lib/jars/concurrentlinkedhashmap-lru-1.4.jar",
"lib/jars/gremlin-java-2.5.0.jar",
"lib/jars/jna-4.0.0.jar",
"lib/jars/orient-commons-1.7.8.jar",
"lib/jars/orientdb-client-1.7.8.jar",
"lib/jars/orientdb-core-1.7.8.jar",
"lib/jars/orientdb-distributed-1.7.8.jar",
"lib/jars/orientdb-enterprise-1.7.8.jar",
"lib/jars/orientdb-graphdb-1.7.8.jar",
"lib/jars/orientdb-nativeos-1.7.8.jar",
"lib/jars/orientdb-object-1.7.8.jar",
"lib/jars/orientdb-server-1.7.8.jar",
"lib/jars/orientdb-tools-1.7.8.jar",
"lib/jars/pipes-2.5.0.jar",
"lib/jars/snappy-java-1.1.0.1.jar",
"lib/orientdb.rb",
"lib/orientdb/constants.rb",
"lib/orientdb/database.rb",
"lib/orientdb/document.rb",
"lib/orientdb/ext.rb",
"lib/orientdb/oclass.rb",
"lib/orientdb/property.rb",
"lib/orientdb/record.rb",
"lib/orientdb/rid.rb",
"lib/orientdb/schema.rb",
"lib/orientdb/sql.rb",
"lib/orientdb/sql/common.rb",
"lib/orientdb/sql/delete.rb",
"lib/orientdb/sql/ext.rb",
"lib/orientdb/sql/insert.rb",
"lib/orientdb/sql/query.rb",
"lib/orientdb/sql/update.rb",
"lib/orientdb/storage.rb",
"lib/orientdb/version.rb",
"orientdb.gemspec",
"spec/database_spec.rb",
"spec/document_spec.rb",
"spec/gremlin_spec.rb",
"spec/orientdb_spec.rb",
"spec/spec.opts",
"spec/spec_basic_helper.rb",
"spec/spec_helper.rb",
"spec/sql_spec.rb",
"spec/tinkerpop_graph_spec.rb"
]
s.homepage = "http://github.com/aemadrid/orientdb-jruby"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Simple JRuby wrapper for the OrientDB."
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, ["~> 2.4"])
s.add_development_dependency(%q<awesome_print>, [">= 0"])
s.add_development_dependency(%q<bundler>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<pry>, [">= 0"])
else
s.add_dependency(%q<rspec>, ["~> 2.4"])
s.add_dependency(%q<awesome_print>, [">= 0"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<pry>, [">= 0"])
end
else
s.add_dependency(%q<rspec>, ["~> 2.4"])
s.add_dependency(%q<awesome_print>, [">= 0"])
s.add_dependency(%q<bundler>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<pry>, [">= 0"])
end
end