forked from veny/orientdb4r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
orientdb4r.gemspec
35 lines (27 loc) · 1.1 KB
/
orientdb4r.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
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path('../lib', __FILE__)
require 'orientdb4r/version'
Gem::Specification.new do |s|
s.name = %q{orientdb4r}
s.version = Orientdb4r::VERSION
s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version=
s.authors = ['Vaclav Sykora']
s.date = Orientdb4r::VERSION_HISTORY[0][1]
s.description = %q{Orientdb4r provides a simple interface on top of OrientDB's RESTful HTTP API.}
s.email = %q{[email protected]}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.homepage = %q{http://github.com/veny/orientdb4r}
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.rubygems_version = %q{1.3.7}
s.summary = %q{Ruby binding for Orient DB.}
s.add_dependency(%q<rest-client>, ["~> 1.6.7"])
# s.add_development_dependency(%q<json>, ["~> 1.5.1"])
end