forked from tdiary/tdiary-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtdiary-contrib.gemspec
44 lines (40 loc) · 1.38 KB
/
tdiary-contrib.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tdiary/contrib/version'
Gem::Specification.new do |spec|
spec.name = "tdiary-contrib"
spec.version = TDiary::Contrib::VERSION
spec.authors = ["tDiary contributors"]
spec.email = ["support@tdiary.org"]
spec.summary = %q{tDiary contributions package}
spec.description = %q{tDiary contributions package that includes plugins, styles, utilities, libraries, filters, and extended io.}
spec.homepage = "http://www.tdiary.org/"
spec.license = "GPL-2 and/or others"
spec.files = Dir[
'README.md',
'README.en.md',
'Rakefile',
'doc/**/*',
'filter/**/*',
'io/**/*',
'js/**/*',
'lib/**/*',
'misc/**/*',
'plugin/**/*',
'spec/**/*',
'style/**/*',
'util/**/*'
]
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 'tdiary'
spec.add_dependency 'ruby-pushbullet'
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "webmock"
spec.add_development_dependency "pry"
end