-
Notifications
You must be signed in to change notification settings - Fork 1
/
steering.gemspec
23 lines (19 loc) · 916 Bytes
/
steering.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "steering/version"
Gem::Specification.new do |gem|
gem.name = "steering"
gem.version = Steering::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Andrew White"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/pixeltrix/steering"
gem.summary = %q{Ruby Handlebars.js Compiler}
gem.description = %q{Steering is a bridge to the official JavaScript Handlebars.js compiler.}
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'execjs', ['>= 1.3.0', '< 2.1.0']
gem.add_runtime_dependency 'steering-source', '>= 1.3.0'
end