forked from dejan/auto_html
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathauto_html.gemspec
More file actions
22 lines (18 loc) · 878 Bytes
/
auto_html.gemspec
File metadata and controls
22 lines (18 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |gem|
gem.name = 'marcosinger-auto_html'
gem.version = '1.3.6'
gem.date = Date.today.to_s
gem.summary = "Transform URIs to appropriate markup"
gem.description = "Automatically transforms URIs (via domain) and includes the destination resource (Vimeo, YouTube movie, image, ...) in your document"
gem.authors = ['Marco Antônio Singer', 'Dejan Simic']
gem.email = ['markaum@gmail.com', 'desimic@gmail.com']
gem.homepage = 'http://github.com/marcosinger/auto_html'
# ensure the gem is built out of versioned files
gem.files = Dir['Rakefile', '{bin,lib,man,test,spec}/**/*',
'README*', 'LICENSE'] & `git ls-files -z`.split("\0")
gem.add_dependency('rinku')
gem.add_dependency('tag_helper')
gem.add_dependency('RedCloth')
gem.add_dependency('redcarpet')
gem.add_dependency 'hpricot', '>= 0.8.4'
end