-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
31 lines (25 loc) · 770 Bytes
/
Rakefile
File metadata and controls
31 lines (25 loc) · 770 Bytes
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
31
require "rake/rdoctask"
require "rake/testtask"
require "rake/gempackagetask"
require "rubygems"
dir = File.dirname(__FILE__)
lib = File.join(dir, "lib", "plurk.rb")
spec = Gem::Specification.new do |spec|
spec.name = "plurk"
spec.version = "2.1"
spec.platform = Gem::Platform::RUBY
spec.summary = "A Plurk ruby client"
spec.files = Dir.glob("{lib}/**/*.rb")
spec.require_path = 'lib'
spec.author = "kates"
spec.email = "katesgasis@gmail.com"
spec.homepage = "http://github.com/kates/plurk"
spec.description = <<END_DESC
An unofficial ruby Plurk client.
END_DESC
spec.add_dependency("json")
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end