Sha256: d3757326d32f58652ef5ce2d999df8e532f4c196c78868d99ec56c8fc004b56d
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
# encoding: UTF-8 Gem::Specification.new do |s| s.name = 'image_size' s.version = '3.0.2' s.summary = %q{Measure image size using pure Ruby} s.description = %q{Measure following file dimensions: apng, bmp, cur, gif, ico, j2c, jp2, jpeg, jpx, mng, pam, pbm, pcx, pgm, png, ppm, psd, svg, swf, tiff, webp, xbm, xpm} s.homepage = "https://github.com/toy/#{s.name}" s.authors = ['Keisuke Minami', 'Ivan Kuchin'] s.license = 'Ruby' s.metadata = { 'bug_tracker_uri' => "https://github.com/toy/#{s.name}/issues", 'changelog_uri' => "https://github.com/toy/#{s.name}/blob/master/CHANGELOG.markdown", 'documentation_uri' => "https://www.rubydoc.info/gems/#{s.name}/#{s.version}", 'source_code_uri' => "https://github.com/toy/#{s.name}", } s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = %w[lib] s.add_development_dependency 'rspec', '~> 3.0' if RUBY_VERSION >= '2.5' s.add_development_dependency 'rubocop', '~> 1.22' s.add_development_dependency 'rubocop-rspec', '~> 2.0' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
image_size-3.0.2 | image_size.gemspec |