blob: 06ce5a947c546c30852157260fd3cc3f318572ab (
plain)
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
|
Gem::Specification.new do |s|
s.name = 'oxidized'
s.version = '0.0.48'
s.platform = Gem::Platform::RUBY
s.authors = [ 'Saku Ytti' ]
s.email = %w( saku@ytti.fi )
s.homepage = 'http://github.com/ytti/oxidized'
s.summary = 'feeble attempt at rancid'
s.description = 'software to fetch configuration from network devices and store them'
s.rubyforge_project = s.name
s.files = `git ls-files`.split("\n")
s.executables = %w( oxidized )
s.require_path = 'lib'
s.add_dependency 'net-ssh'
s.add_dependency 'sqlite3'
s.add_dependency 'grit'
s.add_dependency 'sequel'
s.add_dependency 'sinatra'
s.add_dependency 'sinatra-contrib'
s.add_dependency 'puma'
s.add_dependency 'haml'
s.add_dependency 'sass'
end
|