Sha256: 417aa8bad94315465032fd53d6e4bc41fecdedc31d13c1acf242ce8c69f0cc86

Contents?: true

Size: 901 Bytes

Versions: 3

Compression:

Stored size: 901 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"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
musterb-0.0.3 musterb.gemspec
musterb-0.0.2 musterb.gemspec
musterb-0.0.1 musterb.gemspec