Sha256: 9587bbe0b005e1380d7a329888bb64d0122e0c409942344bb4a3dfc90997fde8

Contents?: true

Size: 963 Bytes

Versions: 4

Compression:

Stored size: 963 Bytes

Contents

# -*- 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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
musterb-0.0.7 musterb.gemspec
musterb-0.0.6 musterb.gemspec
musterb-0.0.5 musterb.gemspec
musterb-0.0.4 musterb.gemspec