forked from gottfrois/link_thumbnailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
link_thumbnailer.gemspec
27 lines (24 loc) · 1.28 KB
/
link_thumbnailer.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'link_thumbnailer/version'
Gem::Specification.new do |spec|
spec.name = "link_thumbnailer"
spec.version = LinkThumbnailer::VERSION
spec.authors = ["Pierre-Louis Gottfrois"]
spec.email = ["[email protected]"]
spec.description = %q{Ruby gem generating thumbnail images from a given URL.}
spec.summary = %q{Ruby gem ranking images from a given URL returning an object containing images and website informations.}
spec.homepage = "https://github.com/gottfrois/link_thumbnailer"
spec.files = `git ls-files`.split($\)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'activesupport', '>= 3.0'
spec.add_dependency 'json', ['>= 1.7.7', '~> 1.7']
spec.add_dependency 'rake', '>= 0.9'
spec.add_dependency 'nokogiri', '~> 1.6'
spec.add_dependency 'net-http-persistent', '~> 2.9'
spec.add_dependency 'fastimage', '~> 1.6'
spec.add_dependency 'video_info', '~> 2.3'
end