-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathomf_web.gemspec
45 lines (39 loc) · 1.7 KB
/
omf_web.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "omf-web/version"
Gem::Specification.new do |s|
s.name = "omf_web"
s.version = OMF::Web::VERSION
s.authors = ["NICTA"]
s.email = ["omf-user@lists.nicta.com.au"]
s.homepage = "https://www.mytestbed.net"
s.summary = %q{OMF's web frontend.}
s.description = %q{OMF's Web based control and visualization framework.}
s.license
s.rubyforge_project = "omf_web"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- {bin,sbin}/*`.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 "omf_oml", "~> 1.0"
s.add_runtime_dependency "omf_base"
s.add_runtime_dependency "erector", "~> 0.9.0"
#s.add_runtime_dependency "activesupport", "~> 3.0.0" # required by erector:table
s.add_runtime_dependency "rack", "~> 1.0"
s.add_runtime_dependency "thin", "~> 1.0"
s.add_runtime_dependency "coderay", "~> 1.0"
s.add_runtime_dependency "maruku", "~> 0.6.0"
s.add_runtime_dependency "ritex", "~> 1.0.0"
s.add_runtime_dependency "json" #, "~> 1.7.0"
s.add_runtime_dependency "gitlab-grit"
s.add_runtime_dependency "websocket-rack", "~> 0.4.0"
s.add_runtime_dependency "rack-accept", "~> 0.4.0"
s.add_runtime_dependency "i18n"
s.add_runtime_dependency "rake"
# Do we need the next two dependencies?
#s.add_runtime_dependency "sqlite3", "~> 1.3.6"
#s.add_runtime_dependency "postgres-pr", "~> 0.6.3"
s.add_runtime_dependency "ruby-openid", "~> 2.2.3"
end