-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweak_headers.gemspec
More file actions
22 lines (18 loc) · 833 Bytes
/
weak_headers.gemspec
File metadata and controls
22 lines (18 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path('../lib', __FILE__)
require 'weak_headers/version'
Gem::Specification.new do |spec|
spec.name = 'weak_headers'
spec.version = WeakHeaders::VERSION
spec.authors = ['Tadayuki Onishi']
spec.email = ['tt.tanishi100@gmail.com']
spec.summary = 'Add a validation headers filter to your rails controller.'
spec.homepage = 'https://github.com/kenchan0130/weak_headers'
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.add_dependency 'rails', '>= 4.0.0'
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'rake'
end