diff options
author | Saku Ytti <saku@ytti.fi> | 2013-04-26 17:41:40 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2013-04-26 17:41:40 +0300 |
commit | 3dc52f34c386409e65465aaa0878ac5db812570c (patch) | |
tree | 44966f1859e8a1d650c911a7772bbefce3acfc71 /oxidized.gemspec | |
parent | b30ca8b31e23ea9f518c92e2ef51f85d8e7a0584 (diff) |
Gemify + add sort-of-cli
Diffstat (limited to 'oxidized.gemspec')
-rw-r--r-- | oxidized.gemspec | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/oxidized.gemspec b/oxidized.gemspec index 879475d..7a3d2cf 100644 --- a/oxidized.gemspec +++ b/oxidized.gemspec @@ -4,8 +4,16 @@ Gem::Specification.new do |s| 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 'sequel' + s.add_dependency 'sqlite3' + s.add_dependency 'net-ssh' + s.add_dependency 'grit' end |