-
Notifications
You must be signed in to change notification settings - Fork 4
/
amber.gemspec
28 lines (25 loc) · 1.13 KB
/
amber.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
require File.join([File.dirname(__FILE__),'lib','amber','version.rb'])
Gem::Specification.new do |s|
s.name = "amber"
s.version = Amber::VERSION
s.summary = "Static website generator"
s.description = "Amber is a super simple and super flexible static website generator with support for nice localization and navigation."
s.authors = ["Elijah Sparrow"]
s.email = ["elijah@leap.se"]
s.files = Dir["{lib}/**/*.rb", "{lib}/**/*.erb", "{locales}/**/*.yml", "bin/*", "LICENSE", "*.md"]
s.homepage = "https://github.com/leapcode/amber"
s.license = "AGPL-1.0"
s.executables << 'amber'
s.bindir = 'bin'
s.required_ruby_version = '>= 1.9'
s.add_runtime_dependency 'i18n', '> 0.8.0'
s.add_runtime_dependency 'haml', '> 5.0.0', '< 6.0.0'
s.add_runtime_dependency 'haml-contrib', '~> 1.0'
s.add_runtime_dependency 'RedCloth', '~> 4.3'
s.add_runtime_dependency 'rdiscount', '~> 2.1'
s.add_runtime_dependency 'tilt', '~> 2.0'
s.add_runtime_dependency 'sass', '~> 3.2'
# security pinnings
s.add_runtime_dependency 'nokogiri', '>= 1.8.5'
s.add_runtime_dependency 'ffi', '>= 1.9.24'
end