forked from mustache/mustache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mustache.gemspec
32 lines (29 loc) · 1.23 KB
/
mustache.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
$LOAD_PATH.unshift 'lib'
require 'mustache/version'
Gem::Specification.new do |s|
s.name = "mustache"
s.version = Mustache::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary =
"Mustache is a framework-agnostic way to render logic-free views."
s.homepage = "http://github.com/defunkt/mustache"
s.email = "[email protected]"
s.authors = [ "Chris Wanstrath", "Magnus Holm", "Pieter van de Bruggen" ]
s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("test/**/*")
s.executables = %w( mustache )
s.description = <<desc
Inspired by ctemplate, Mustache is a framework-agnostic way to render
logic-free views.
As ctemplates says, "It emphasizes separating logic from presentation:
it is impossible to embed application logic in this template
language.
Think of Mustache as a replacement for your views. Instead of views
consisting of ERB or HAML with random helpers and arbitrary logic,
your views are broken into two parts: a Ruby class and an HTML
template.
desc
end