-
Notifications
You must be signed in to change notification settings - Fork 0
/
erb_to_slim.gemspec
22 lines (19 loc) · 996 Bytes
/
erb_to_slim.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
require File.expand_path('../lib/erb_to_slim/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'erb_to_slim'
s.version = ErbToSlim::VERSION
s.date = Time.now.strftime('%F')
s.required_ruby_version = '>= 1.9.1'
s.authors = ['Billy.Zheng(zw963)']
s.email = ['[email protected]']
s.summary = 'Converts Erb templates to Slim templates'
s.description = 'Convert Erb to Slim directly with REGEXP.'
s.homepage = 'http://github.com/zw963/erb_to_slim'
s.license = 'MIT'
s.require_paths = ['lib']
s.files = `git ls-files bin lib *.md LICENSE`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f) }
s.add_development_dependency 'ritual', '~>0.4'
end