Sha256: 11b185f3062764668dfcd6649256f2d8e8d27137f8fedd5a2180aa9084d6fd36
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "http_error/version" Gem::Specification.new do |spec| spec.name = "http-errors" spec.version = HttpErrors::VERSION spec.authors = ["Emil Kampp"] spec.email = ["emil@kampp.me"] spec.summary = 'Easy way to raise HTTP errors from your ruby application' spec.description = 'Easy way to raise HTTP errors from your ruby application' spec.homepage = "https://github.com/YouWeApS/arctic-gems-http_errors" 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_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_runtime_dependency "activesupport", "~> 5.1" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
http-errors-0.1.3 | http_errors.gemspec |
http-errors-0.1.1 | http_errors.gemspec |
http-errors-0.1.0 | http_errors.gemspec |