forked from FunGoStudios/json-commonlogger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson-commonlogger.gemspec
More file actions
21 lines (19 loc) · 905 Bytes
/
json-commonlogger.gemspec
File metadata and controls
21 lines (19 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ['Matteo Centenaro']
gem.email = ['bugant@gmail.com']
gem.description = %q{Rack middleware to log info like Rack::CommonLogger does but in JSON format}
gem.summary = %q{Rack middleware to log info like Rack::CommonLogger does but in JSON format}
gem.homepage = 'https://github.com/FunGoStudios/json-commonlogger'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'json-commonlogger'
gem.require_paths = ['lib']
gem.version = '0.1.0'
gem.add_dependency 'rack'
gem.add_dependency 'yajl-ruby'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'byebug'
end