forked from dejan/auto_html
-
Notifications
You must be signed in to change notification settings - Fork 2
/
auto_html.gemspec
27 lines (21 loc) · 1.02 KB
/
auto_html.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
require File.expand_path("../lib/auto_html/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = 'auto_html'
gem.version = AutoHtml::VERSION
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 = ['Dejan Simic']
gem.email = '[email protected]'
gem.homepage = 'http://github.com/dejan/auto_html'
gem.add_dependency 'rails', '>= 3.2'
gem.add_dependency 'rinku', '~> 1.7'
gem.add_dependency 'redcarpet', '~> 3.3'
gem.add_development_dependency "fakeweb"
gem.add_development_dependency "minitest"
gem.add_development_dependency "sqlite3", "~> 1.3.11"
gem.add_development_dependency "rake", ">= 0.9.2"
gem.add_development_dependency 'appraisal'
# 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")
end