-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtd2planet.gemspec
28 lines (26 loc) · 981 Bytes
/
td2planet.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
$LOAD_PATH.push File.join(File.dirname(__FILE__), 'lib')
require 'td2planet/version'
Gem::Specification.new do |s|
s.name = "td2planet"
s.version = TD2Planet::TD2PLANET_VERSION
s.date = TD2Planet::TD2PLANET_RELEASE_DATE
s.author = "Kazuhiro NISHIYAMA"
s.email = "[email protected]"
s.homepage = "https://github.com/znz/td2planet"
s.rubyforge_project = "td2planet"
s.platform = Gem::Platform::RUBY
s.description = "Ruby-based server-side blog aggregator"
s.summary = "planet of ruby, mainly for tdiary"
s.license = 'MIT'
s.files = [
Dir.glob("{bin,lib}/**/*.rb"),
%w"ChangeLog MIT-LICENSE README.rdoc README.ja.rdoc",
%w"config.yaml",
Dir.glob("**/templates/*.r{html,xml}"),
].flatten.sort
s.require_path = "lib"
s.executables = %w"td2planet.rb"
s.has_rdoc = true
s.rdoc_options = %w"--charset utf-8 --inline-source --line-numbers --main README.rdoc"
s.extra_rdoc_files = %w"README.rdoc README.ja.rdoc"
end