-
Notifications
You must be signed in to change notification settings - Fork 2
/
SwissWatch.gemspec
29 lines (22 loc) · 936 Bytes
/
SwissWatch.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
Gem::Specification.new do |s|
s.name = "swisswatch"
s.version = "1.0.0"
s.authors = ["Jordan Schaenzle"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/JSchaenzle/SwissWatch"
s.summary = "A priority based task scheduler for C programs."
s.description = "A priority based task scheduler for C programs."
s.required_rubygems_version = ">= 1.3.6"
# lol - required for validation
#s.rubyforge_project = "newgem"
# If you have other dependencies, add them here
# s.add_dependency "another", "~> 1.2"
# If you need to check in files that aren't .rb files, add them here
#s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.md"]
s.files = Dir["*"]
s.require_path = '.'
# If you need an executable, add it here
# s.executables = ["newgem"]
# If you have C extensions, uncomment this line
# s.extensions = "ext/extconf.rb"
end