-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpug-ruby.gemspec
25 lines (21 loc) · 1.05 KB
/
pug-ruby.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
# encoding: UTF-8
# frozen_string_literal: true
require File.expand_path("lib/pug-ruby/version", __dir__)
Gem::Specification.new do |s|
s.name = "pug-ruby"
s.version = PUG_RUBY_GEM_VERSION
s.author = "Yaroslav Konoplov"
s.email = "[email protected]"
s.summary = "Compile Jade and Pug from Ruby."
s.description = "pug-ruby is a gem that allows you to easily compile Jade and Pug templates from Ruby."
s.homepage = "https://github.com/yivo/pug-ruby"
s.license = "MIT"
s.files = `git ls-files -z`.split("\x0")
s.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
s.require_paths = ["lib"]
s.add_dependency "execjs", "~> 2.0"
s.add_dependency "memoist", "~> 0.15"
s.add_dependency "regexp-match-polyfill", "~> 1.0", ">= 1.0.2"
s.add_dependency "method-not-implemented", "~> 1.0", ">= 1.0.1"
s.add_development_dependency "bundler", "~> 1.7"
end