-
Notifications
You must be signed in to change notification settings - Fork 0
/
rack-app_version.gemspec
30 lines (24 loc) · 1.07 KB
/
rack-app_version.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rack/app_version/version'
Gem::Specification.new do |spec|
spec.name = 'rack-app_version'
spec.version = Rack::AppVersion::VERSION
spec.authors = ['Wilfrido T. Nuqui Jr.']
spec.email = ['dofreewill22@gmail.com']
spec.summary = 'Middleware that sets app version in response header.'
spec.description = 'Middleware that sets app version in response header.'
spec.homepage = 'https://github.com/wnuqui/rack-app_version'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '>= 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0.0'
spec.add_development_dependency 'simplecov'
spec.add_runtime_dependency 'activesupport'
end