forked from Gargron/blurhash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blurhash.gemspec
28 lines (22 loc) · 1014 Bytes
/
blurhash.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
28
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'blurhash/version'
Gem::Specification.new do |spec|
spec.name = 'blurhash'
spec.version = Blurhash::VERSION
spec.authors = ['Eugen Rochko']
spec.email = ['[email protected]']
spec.summary = %q{Encode an image as a small string that can saved in the database and used to show a blurred preview before the real image loads}
spec.homepage = 'https://github.com/Gargron/blurhash'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.extensions = ['ext/blurhash/extconf.rb']
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rake-compiler'
spec.add_development_dependency 'rspec', '~> 3.0'
end