forked from tdiary/tdiary-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tdiary.gemspec
25 lines (21 loc) · 900 Bytes
/
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
# coding: utf-8
lib = File.expand_path('../', __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 = ["[email protected]"]
spec.summary = %q{a TSUKKOMI-able Web-log}
spec.description = %q{tDiary is so called Weblog.}
spec.homepage = "http://www.tdiary.org/"
spec.license = "GPL-2"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["."]
spec.required_ruby_version = '>= 1.9.2'
spec.add_dependency 'thor', '~> 0.18'
spec.add_dependency "bundler", "~> 1.3"
end