-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhyde_admin.gemspec
38 lines (32 loc) · 1.45 KB
/
hyde_admin.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
require_relative "lib/hyde_admin/version"
Gem::Specification.new do |s|
s.name = 'hyde_admin'
s.version = HydeAdmin::VERSION
s.summary = "Hyde for Jekyll site"
s.description = "A Jekyll admin interface"
s.authors = ["Sylvain Claudel"]
s.email = '[email protected]'
all_files = `git ls-files`.split("\n").reject{ |filepath| filepath.start_with? 'test/' }
s.files = all_files
s.executables = ['hyde_admin','hyde_admin_config']
s.bindir = "bin"
s.require_paths = ["lib"]
s.homepage = 'https://rubygems.org/gems/hyde_admin'
s.metadata = {
"source_code_uri" => "https://github.com/rivsc/hyde_admin",
"bug_tracker_uri" => "https://github.com/rivsc/hyde_admin/issues",
"changelog_uri" => "https://github.com/rivsc/hyde_admin/releases",
"homepage_uri" => s.homepage,
}
s.license = 'MIT'
s.add_runtime_dependency("roda", "~> 3.48.0")
s.add_runtime_dependency("roda-i18n", "~> 0.4.0")
s.add_runtime_dependency("roda-http-auth", "0.2.0")
s.add_runtime_dependency("escape_utils") # escape_javascript / escape_html
#s.add_runtime_dependency("i18n", "~> 0.4.0") # I18n.transliterate (already required by jekyll)
s.add_runtime_dependency('jekyll') # Because we call jekyll binary
s.add_runtime_dependency('image_processing') # JPEG quality
s.add_runtime_dependency('mini_magick')
s.add_runtime_dependency('rack', '2.2.4')
s.add_runtime_dependency('puma')
end