Skip to content

Commit

Permalink
fixing gemspec and updating readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailvs committed Dec 1, 2018
1 parent bb2ba9a commit ca2aabe
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Gemfile.lock
Expand Up @@ -2,8 +2,8 @@ PATH
remote: .
specs:
rack-fluentd-logger (0.1.0)
concurrent-ruby
fluent-logger (~> 0.7.2)
concurrent-ruby (>= 1.1)
fluent-logger (>= 0.7)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -49,8 +49,8 @@ PLATFORMS

DEPENDENCIES
rack-fluentd-logger!
rspec
rubocop
rspec (>= 3.8)
rubocop (>= 0.60)

BUNDLED WITH
1.16.6
1.17.0.pre.1
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -4,7 +4,12 @@

Gemfile:
```ruby
gem 'serializer', github: 'mikhailvs/simple-serializer'
gem 'rack-fluentd-logger'
```

Shell:
```sh
gem install rack-fluentd-logger
```

## Usage
Expand Down
15 changes: 10 additions & 5 deletions rack-fluentd-logger.gemspec
Expand Up @@ -13,12 +13,17 @@ Gem::Specification.new do |s|
s.email = ['slyusarevmikhail@gmail.com']
s.summary = 'Rack middleware for logging traffic to fluentd.'
s.homepage = 'https://github.com/mikhailvs/rack-fluentd-logger'
s.files = ['lib/*.rb']
s.files = [
'lib/rack/fluentd-logger.rb',
'lib/rack/fluentd_logger.rb',
'lib/rack/fluentd_logger_version.rb'
]
s.require_paths = ['lib']
s.license = 'MIT'

s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'rspec', '~> 3.8'
s.add_development_dependency 'rubocop', '~> 0.60'

s.add_runtime_dependency 'concurrent-ruby'
s.add_runtime_dependency 'fluent-logger', '~> 0.7.2'
s.add_runtime_dependency 'concurrent-ruby', '~> 1.1'
s.add_runtime_dependency 'fluent-logger', '~> 0.7'
end

0 comments on commit ca2aabe

Please sign in to comment.