We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 5a872b1Copy full SHA for 5a872b1
README.md
@@ -0,0 +1,25 @@
1
+# Grape::Middleware::Logstasher
2
+Logstash comptible access logs for Grape 0.12.0
3
+
4
+## Installation
5
6
+Add this line to your application's Gemfile:
7
8
+```ruby
9
+gem 'grape-middleware-logstasher'
10
+```
11
12
+## Usage
13
14
+class API < Grape::API
15
+ use Grape::Middleware::Logstasher
16
+end
17
18
19
+## Contributing
20
21
+1. Fork it ( https://github.com/ridiculous/grape-middleware-logstasher/fork )
22
+2. Create your feature branch (`git checkout -b my-new-feature`)
23
+3. Commit your changes (`git commit -am 'Add some feature'`)
24
+4. Push to the branch (`git push origin my-new-feature`)
25
+5. Create a new Pull Request
0 commit comments