# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'imgix/version' Gem::Specification.new do |spec| spec.name = 'imgix' spec.version = Imgix::VERSION spec.authors = ['Sam Soffes'] spec.email = ['sam@soff.es'] spec.description = 'Easily sign imgix URLs.' spec.summary = spec.description spec.homepage = 'https://github.com/soffes/imgix' spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.required_ruby_version = '>= 1.8.7' spec.add_dependency 'addressable' end