-
Notifications
You must be signed in to change notification settings - Fork 67
/
tdiary.gemspec
48 lines (44 loc) · 1.29 KB
/
tdiary.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
46
47
48
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tdiary/version'
Gem::Specification.new do |spec|
spec.name = "tdiary"
spec.version = TDiary::VERSION
spec.authors = ["TADA Tadashi", "SHIBATA Hiroshi", "MATSUOKA Kohei"]
spec.email = ["support@tdiary.org"]
spec.summary = %q{a TSUKKOMI-able Web-log}
spec.description = %q{tDiary is so called Weblog.}
spec.homepage = "http://www.tdiary.org/"
spec.license = "GPL2"
spec.files = Dir[
'ChangeLog',
'config.ru',
'Gemfile',
'Gemfile.lock',
'README.md',
'Rakefile',
'tdiary.conf*',
'bin/**/*',
'doc/**/*',
'js/**/*',
'lib/**/*',
'misc/**/*',
'public/**/*',
'theme/**/*',
'vendor/**/*',
'views/**/*'
]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.6'
spec.add_dependency 'emot'
spec.add_dependency 'fastimage'
spec.add_dependency 'hikidoc'
spec.add_dependency 'mail'
spec.add_dependency 'rack'
spec.add_dependency 'rake'
spec.add_dependency 'thor'
spec.add_dependency 'rexml'
spec.add_dependency 'webrick'
spec.add_dependency "bundler", ">= 1.3", "< 3.0"
end