forked from lehmannro/tweetalano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
30 lines (27 loc) · 822 Bytes
/
Rakefile
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
30
# Copyright 2011 Robert Lehmann
require 'lib/tweetalano/version'
require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
s.name = 'tweetalano'
s.version = Tweetalano::VERSION
s.summary = "mutt-like twitter client"
s.homepage = "https://github.com/lehmannro/tweetalano/"
s.author = "Robert Lehmann"
s.email = "tweetalano@robertlehmann.de"
s.license = "Apache Software License"
s.description = <<EOF
tweetalano is a console client for Twitter.
EOF
s.platform = Gem::Platform::RUBY
s.files = FileList.new %w{ lib/**/*.rb }
s.executables = %w(tweetalano)
s.add_dependency 'twitter'
s.add_dependency 'stfl'
s.add_dependency 'xdg'
s.add_dependency 'oauth'
s.add_dependency 'yaml'
s.add_dependency 'launchy'
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = true
end