Sha256: 4aaa2d52128f4a4dbfed8e1f6ceb9a7473b5c2fe744ef0afd61dbb2db8756b6d
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "carrierwave-picture/version" Gem::Specification.new do |spec| spec.name = "carrierwave-picture" spec.version = Carrierwave::Picture::VERSION spec.authors = ["Igor Pavlov"] spec.email = ["igorpavlov.ip@gmail.com"] spec.summary = %q{A simple gem for use new web image formats with Carriewave.} spec.description = %q{Converting images to webp and jp2 via imagemagic and add picture_tag to action view.} spec.homepage = "https://github.com/PavlovIgor/carrierwave-picture" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "carrierwave", [">= 0.8", "< 2.0"] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
carrierwave-picture-0.3.3 | carrierwave-picture.gemspec |
carrierwave-picture-0.2.2 | carrierwave-picture.gemspec |