# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'musterb/version' Gem::Specification.new do |gem| gem.name = "musterb" gem.version = Musterb::VERSION gem.authors = ["Tejas Dinkar"] gem.email = ["tejas@gja.in"] gem.description = %q{The ability to compile mustache templates to erubis erb templates so that we can make use of the performance of compiling templates} gem.summary = %q{Compile Mustache templates to ERB} gem.homepage = "" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency "erubis" gem.add_dependency "hashie" gem.add_development_dependency "rspec" gem.add_development_dependency "mustache" # for performance end