forked from Ibsciss/ruby-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware.gemspec
23 lines (20 loc) · 1.13 KB
/
middleware.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ['Mitchell Hashimoto', 'Arnaud Lemaire']
gem.email = ['[email protected]', '[email protected]']
gem.description = 'Generalized implementation of the rack middleware abstraction for Ruby.'
gem.summary = 'Generalized implementation of the rack middleware abstraction for Ruby (chain of responsibility design pattern).'
gem.homepage = 'https://github.com/ibsciss/ruby-middleware'
gem.license = 'MIT'
gem.add_development_dependency 'rake', '~> 10.4.2'
gem.add_development_dependency 'rspec-core', '~> 3.2'
gem.add_development_dependency 'rspec-expectations', '~> 3.2'
gem.add_development_dependency 'rspec-mocks', '~> 3.2'
gem.add_development_dependency 'codeclimate-test-reporter', '~> 0.4.7'
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 = 'ibsciss-middleware'
gem.require_paths = ['lib']
gem.version = '0.4.0'
end