-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (24 loc) · 803 Bytes
/
Rakefile
File metadata and controls
27 lines (24 loc) · 803 Bytes
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
# encoding: utf-8
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'juwelier'
Juwelier::Tasks.new do |gem|
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
gem.name = "ruby-handlebars"
gem.homepage = "https://github.com/smartbear/ruby-handlebars"
gem.summary = "Pure Ruby library for Handlebars templates "
gem.email = "v.pretre@hiptest.net"
gem.authors = ["Vincent Pretre", "Hiptest R&D"]
gem.executables = []
gem.files = `git ls-files -- lib/*`.split("\n")
gem.require_path = "lib"
end
Juwelier::RubygemsDotOrgTasks.new