Sha256: 4ac73bd4a7420e0bde878d6e518bb73cd101f8a43ae5ceaaf777d9a4f9b3cdf1
Contents?: true
Size: 1014 Bytes
Versions: 2
Compression:
Stored size: 1014 Bytes
Contents
# 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 = ['eugen@zeonfederated.com'] 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
blurhash-0.1.8 | blurhash.gemspec |
blurhash-0.1.7 | blurhash.gemspec |