-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckzilla.gemspec
28 lines (23 loc) · 972 Bytes
/
checkzilla.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "checkzilla"
s.version = "0.1.2"
s.platform = Gem::Platform::RUBY
s.authors = ["Michael Bensoussan"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/mickey/checkzilla"
s.summary = "CLI allowing to check and be notified of outdated software"
s.description = "CheckZilla is a command line tool allowing you to check and be notified of outdated software."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "checkzilla"
s.add_dependency('clamp')
s.add_dependency('twitter')
s.add_dependency('hipchat')
s.add_dependency('clamp', '>= 0.3.0')
s.add_dependency('pony')
libglob = File::join(File::dirname(__FILE__), "lib/**/*")
binglob = File::join(File::dirname(__FILE__), "bin/checkzilla*")
s.files = Dir[libglob] + Dir[binglob]
s.executables = ['checkzilla']
s.require_path = 'lib'
end