-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomf_oml.gemspec
29 lines (25 loc) · 1.05 KB
/
omf_oml.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "omf_oml/version"
Gem::Specification.new do |s|
s.name = "omf_oml"
# s.version = OmfWeb::VERSION
s.version = OMF::OML::VERSION
s.authors = ["NICTA"]
s.email = ["[email protected]"]
s.homepage = "https://www.mytestbed.net"
s.summary = %q{Glue between OMF and OML.}
s.description = %q{Glue functionality between OMF and OMF related libraries, such as OMF Web and Labwiki, and
OML.}
s.rubyforge_project = "omf_oml"
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"]
# specify any dependencies here; for example:
# s.add_development_dependency "minitest", "~> 2.11.3"
#s.add_runtime_dependency "sqlite3", "~> 1.3.6"
s.add_runtime_dependency 'omf_base'
s.add_runtime_dependency 'sequel', '~> 3'
s.add_runtime_dependency "sqlite3", '~> 1.3'
end