-
Notifications
You must be signed in to change notification settings - Fork 4
/
minibars.gemspec
35 lines (28 loc) · 1.48 KB
/
minibars.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "minibars/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "minibars"
s.version = Minibars::VERSION
s.authors = ["Nicholas Jakobsen", "Delon Newman"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/combinaut/minibars"
s.summary = "Minibars is a stripped down implementation of Handlerbars using MiniRacer."
s.description = "Minibars is a stripped down implementation of Handlerbars using MiniRacer. It eschews capabilities that require two-way binding with the JS runtime, making it a good choice for those with simple Handlebars templates who need an upgrade path for their ARM64 architecture."
s.license = "MIT"
if s.respond_to?(:metadata)
s.metadata["allowed_push_host"] = "https://rubygems.org"
s.metadata["homepage_uri"] = s.homepage
s.metadata["source_code_uri"] = s.homepage
s.metadata["changelog_uri"] = "#{s.homepage}/blob/master/CHANGELOG.md"
s.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/minibars"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency 'mini_racer', '~> 0.6.4'
s.add_dependency 'handlebars-source'
s.add_development_dependency 'rspec', '~> 3.7'
end