-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtdiary-blogkit.gemspec
45 lines (40 loc) · 1.37 KB
/
tdiary-blogkit.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tdiary/blogkit/version'
Gem::Specification.new do |spec|
spec.name = "tdiary-blogkit"
spec.version = TDiary::Blogkit::VERSION
spec.authors = ["tDiary contributors"]
spec.email = ["support@tdiary.org"]
spec.summary = %q{tDiary blogkit package.}
spec.description = %q{tDiary BlogKit modifies tDiary. This modification enables tDiary to manage articles by topics, not daily.}
spec.homepage = "http://www.tdiary.org/"
spec.license = "GPL2"
spec.files = Dir[
'ChangeLog',
'COPYING',
'Rakefile',
'README.md',
'README.en.md',
'tdiary.conf.sample',
'tdiary.conf.sample_ja',
'UPDATE.md',
'UPDATE.en.md',
'bin/**/*',
'js/**/*',
'lib/**/*',
'plugin/**/*',
'spec/**/*'
]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency 'hikidoc'
spec.add_dependency 'tdiary', '~> 5.0'
spec.add_dependency 'tdiary-style-rd'
spec.add_dependency 'tdiary-style-gfm'
spec.add_development_dependency "bundler", ">= 1.3", "< 3.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.0"
end