-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpug-rails.gemspec
24 lines (20 loc) · 948 Bytes
/
pug-rails.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
# encoding: UTF-8
# frozen_string_literal: true
require File.expand_path("../lib/pug-rails/version", __FILE__)
Gem::Specification.new do |s|
s.name = "pug-rails"
s.version = PUG_RAILS_GEM_VERSION
s.author = "Yaroslav Konoplov"
s.email = "eahome00@gmail.com"
s.summary = "Make Jade / Pug play well with Sprockets."
s.description = "pug-rails is a gem that allows you to easily integrate " \
"Jade / Pug template engine " \
"with Rails asset packaging system known as Sprockets."
s.homepage = "https://github.com/yivo/pug-rails"
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 "pug-ruby", "~> 2.0.0"
s.add_development_dependency "bundler", "~> 1.7"
end