This repository was archived by the owner on Apr 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathemerald.gemspec
More file actions
33 lines (28 loc) · 1.47 KB
/
emerald.gemspec
File metadata and controls
33 lines (28 loc) · 1.47 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'emerald/version'
Gem::Specification.new do |spec|
spec.name = 'emerald-lang'
spec.version = Emerald::VERSION
spec.authors = ['Andrew McBurney', 'Dave Pagurek', 'Yu Chen Hu']
spec.summary = 'A language agnostic templating engine designed with event driven applications in mind.'
spec.description = 'A language agnostic templating engine designed with event driven applications in mind.' # TODO: make better description
spec.homepage = 'https://github.com/emerald-lang/emerald' # TODO: replace with website once created
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'bin'
spec.executables = ['emerald']
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'test-unit'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'pre-commit'
spec.add_runtime_dependency 'htmlentities'
spec.add_runtime_dependency 'treetop'
spec.add_runtime_dependency 'thor'
spec.add_runtime_dependency 'htmlbeautifier', '~> 1.1', '>= 1.1.1'
end