forked from bunto/bunto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bunto.gemspec
53 lines (44 loc) · 1.99 KB
/
bunto.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
49
50
51
52
53
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bunto/version'
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.rubygems_version = '2.2.2'
s.required_ruby_version = '>= 2.0.0'
s.name = 'bunto'
s.version = Bunto::VERSION
s.license = 'MIT'
s.summary = 'A simple, static site generator & web application framework.'
s.description = 'Bunto is a simple, static site generator & web application framework.'
s.post_install_message = <<-msg
--------------------------------------------------------
Thank you for installing Bunto!
Bunto is a Web Application Framework build by Suriyaa
Kudo which can be used as a simple, static site
generator for personal, project, or organization sites.
For more information visit:
https://github.com/bunto/bunto
--------------------------------------------------------
msg
s.authors = ['Suriyaa Kudo']
s.email = '[email protected]'
s.homepage = 'https://github.com/bunto/bunto'
all_files = `git ls-files -z`.split("\x0")
s.files = all_files.grep(%r{^(exe|lib)/|^.rubocop.yml$})
s.executables = all_files.grep(%r{^exe/}) { |f| File.basename(f) }
s.bindir = "exe"
s.require_paths = ['lib']
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = %w[README.markdown LICENSE]
s.add_runtime_dependency('liquid', '~> 3.0')
s.add_runtime_dependency('kramdown', '~> 1.3')
s.add_runtime_dependency('mercenary', '~> 0.3.3')
s.add_runtime_dependency('safe_yaml', '~> 1.0')
s.add_runtime_dependency('colorator', '~> 1.0')
s.add_runtime_dependency('rouge', '~> 1.7')
s.add_runtime_dependency('bunto-sass-converter', '>= 3.0')
s.add_runtime_dependency('bunto-watch', '>= 1.0')
s.add_runtime_dependency("pathutil", "~> 0.9")
end