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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
$LOAD_PATH.unshift 'lib'
require 'mustache/version'
module RubyVersion
def self.rbx?
defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
end
def self.jruby?
RUBY_PLATFORM =~ /java/
end
end
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 = "https://github.com/mustache/mustache"
s.email = "rokusu@gmail.com"
s.authors = [ "Chris Wanstrath", "Magnus Holm", "Pieter van de Bruggen", "Ricardo Mendes" ]
s.license = "MIT"
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
s.required_ruby_version = '>= 2.0'
s.add_development_dependency 'bundler', '~> 1.6'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'minitest', '~> 5.4'
s.add_development_dependency 'benchmark-ips'
s.add_development_dependency 'ruby-prof' unless RubyVersion.rbx? || RubyVersion.jruby?
s.add_development_dependency 'rdoc', '~> 4.1'
s.add_development_dependency 'ronn', '~> 0.7' unless RubyVersion.rbx? || RubyVersion.jruby?
end
|