Sha256: f3d7f0c32258aeb3b7a8e7a38b50f423eea89d55408e68bcf4bdf7811f4ba8ef

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "handlebars/version"

Gem::Specification.new do |s|
  s.name        = "hbs_plus"
  s.version     = Handlebars::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Charles Lowell", "German DZ"]
  s.email       = ["cowboyd@thefrontside.net", "germ@ndz.com.ar"]
  s.homepage    = "http://github.com/germandz/handlebars.rb"
  s.summary     = %q{Ruby bindings for the handlebars.js templating library, based on 'hbs' gem}
  s.description = %q{Uses the actual JavaScript implementation of Handlebars, but supports using Ruby objects as template contexts and Ruby procs as view functions and named helpers}

  s.rubyforge_project = "handlebars"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  Dir.chdir("js") do
    s.files += `git ls-files`.split("\n").map {|f| "js/#{f}"}
    s.files += ['js/lib/handlebars/parser.js']
  end

  s.add_dependency "therubyracer", "~> 0.9.4"
  s.add_development_dependency "rspec", "~> 2.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hbs_plus-0.1.3 hbs.gemspec