-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.gemspec
29 lines (26 loc) · 1.01 KB
/
post.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
time = Time.new
month = time.month
day = time.day
if (time.month < 10)
month = "0#{month}"
end
if (day < 10)
day = "0#{day}"
end
date = "#{time.year}-#{month}-#{day}"
Gem::Specification.new do |s|
s.name = 'post'
s.license = 'LGPL'
s.executables << 'post'
s.version = '2.4.7'
s.date = date
s.summary = 'Package manager for Linux/Unix in pure ruby.'
s.description = 'Post is a small, fast package manager for linux and unix systems based on principles of simplicity.'
s.authors = ['Alexandra Chace']
s.email = 'achace@student.gsu.edu'
s.files = ["lib/post.rb", "lib/plugins", "lib/plugins/http_fetch_binary.rb",
"lib/plugins/install_binary.rb", "lib/plugins/verify_sha256.rb", "lib/plugins/remove_binary.rb",
"lib/database.rb", "lib/buildtools.rb", "lib/makepkg.rb", "lib/plugins/fetch_source.rb", "lib/plugin.rb", "lib/plugins/dependency_resolver.rb"]
s.homepage =
'http://github.com/leximari/Post'
end