-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp_client_detector.gemspec
More file actions
39 lines (33 loc) · 1.1 KB
/
http_client_detector.gemspec
File metadata and controls
39 lines (33 loc) · 1.1 KB
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
31
32
33
34
35
36
37
38
39
Gem::Specification.new do |s|
s.name = 'http_client_detector'
s.version = '0.4.0'
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.authors = ['Taras Struk']
s.date = '2013-12-16'
s.extra_rdoc_files = [
'README.md'
]
s.files = %w{
README.md
Gemfile
Gemfile.lock
spec/spec_helper.rb
spec/lib/http_client_detector_spec.rb
lib/http_client_detector.rb
lib/http_client_info.rb
}
s.homepage = 'http://github.com/experteer/http_client_detector'
s.require_paths = ['lib']
s.rubygems_version = '1.8.26'
s.summary = 'Rack Middleware for querying http client info'
s.specification_version = 3
s.add_runtime_dependency "rack", ">= 1.4"
s.add_runtime_dependency "rack-contrib", "~> 1.2.0"
s.add_runtime_dependency "json", "~> 2.6.1"
s.add_development_dependency "rake"
s.add_development_dependency "pry"
s.add_development_dependency "rack-test"
s.add_development_dependency "rspec"
s.add_development_dependency "mime-types"
s.add_development_dependency "webmock", ">= 3.14.0"
end