1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/middleware/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Mitchell Hashimoto"]
gem.email = ["mitchell.hashimoto@gmail.com"]
gem.description = %q{Generalized implementation of the middleware abstraction for Ruby.}
gem.summary = %q{Generalized implementation of the middleware abstraction for Ruby.}
gem.homepage = "https://github.com/mitchellh/middleware"
gem.add_development_dependency "rake"
gem.add_development_dependency "redcarpet", "~> 2.1.0"
gem.add_development_dependency "rspec-core", "~> 2.8.0"
gem.add_development_dependency "rspec-expectations", "~> 2.8.0"
gem.add_development_dependency "rspec-mocks", "~> 2.8.0"
gem.add_development_dependency "yard", "~> 0.7.5"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "middleware"
gem.require_paths = ["lib"]
gem.version = Middleware::VERSION
end
|