forked from ytti/oxidized-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoxidized-web.gemspec
24 lines (23 loc) · 1.12 KB
/
oxidized-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
Gem::Specification.new do |s|
s.name = 'oxidized-web'
s.version = '0.7.0'
s.licenses = %w( Apache-2.0 )
s.platform = Gem::Platform::RUBY
s.authors = ['Saku Ytti', 'Samer Abdel-Hafez']
s.email = %w([email protected] [email protected])
s.homepage = 'http://github.com/ytti/oxidized-web'
s.summary = 'sinatra API + webUI for oxidized'
s.description = 'puma+sinatra+haml webUI + REST API for oxidized'
s.rubyforge_project = s.name
s.files = `git ls-files`.split("\n")
s.executables = %w( )
s.require_path = 'lib'
s.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency 'oxidized', '~> 0.13'
s.add_runtime_dependency 'puma', '~> 2.8'
s.add_runtime_dependency 'sinatra', '~> 1.4', '>= 1.4.6'
s.add_runtime_dependency 'sinatra-contrib', '~> 1.4', '>= 1.4.6'
s.add_runtime_dependency 'haml', '~> 4.0'
s.add_runtime_dependency 'sass', '~> 3.3'
s.add_runtime_dependency 'emk-sinatra-url-for', '~> 0.2'
end