-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathactive-orient.gemspec
More file actions
29 lines (26 loc) · 1.17 KB
/
active-orient.gemspec
File metadata and controls
29 lines (26 loc) · 1.17 KB
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = "active-orient"
s.version = File.open('VERSION').read.strip
s.authors = ["Hartmut Bischoff"]
s.email = ["topofocus@gmail.com"]
s.homepage = 'https://github.com/topofocus/active-orient'
s.licenses = ['MIT']
s.summary = 'Pure ruby client for OrientDB(V.3) based on ActiveModel'
s.description = 'Persistent ORM for OrientDB(V.3), based on ActiveModel. Rails 5 compatible'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.5'
s.date = Time.now.strftime "%Y-%m-%d"
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_dependency 'activesupport'#, "~> 4.2"
s.add_dependency 'activemodel'#, "~> 4.2"
s.add_dependency 'rest-client'
s.add_dependency 'pond'
end