-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstop_it.gemspec
More file actions
21 lines (19 loc) · 936 Bytes
/
stop_it.gemspec
File metadata and controls
21 lines (19 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |gem|
gem.authors = ['Andrei Gridnev']
gem.email = ['andrew.gridnev@gmail.com']
gem.description = 'Middleware for blocking requests to rake apps
based on user agent, remote IP, and other environment variables.'
gem.summary = 'Middleware for blocking requests to rake apps.'
gem.homepage = 'https://github.com/andrewgr/stop_it/'
gem.license = 'MIT'
gem.files = `git ls-files`.split($ORS)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^spec/})
gem.name = 'stop_it'
gem.require_paths = ['lib']
gem.version = '2.0.0'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rubocop', '~> 0.30'
gem.add_development_dependency 'cane', '~> 2.6', '>= 2.6.1'
gem.add_development_dependency 'codeclimate-test-reporter', '~> 0.4', '>= 0.4.7'
end