rain_catcher 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/LICENSE +7 -0
- data/README.md +2 -2
- data/lib/rain_catcher/version.rb +1 -1
- data/rain_catcher.gemspec +1 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e09a2821d27ade1868628865943fcbf5bdb77ebf740b3eb045adc6cb09d8ab08
|
4
|
+
data.tar.gz: f087ac42343b41b79ddf75a8550da29fe6787dda83362d2e1807bd74ff5de125
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb52fa44013b165f3fc2c34cd4ea9ac9c955fa4668489a3a2f0e8ca6ed2d74ec2cc5eb7d734888b1dd356093f45f3d103f42a388bc02c9fc22b660a66b9e16bd
|
7
|
+
data.tar.gz: 2b1f768b3bcd939fff6b31af5e100245d85c512216b6f253446c05ad122aa33a1358044762ce6c5663f3b7f0620c87f9af6c99f075d1f52b3ead4bb13aac9cc7
|
data/Gemfile.lock
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright 2019 Robert Farrell
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
# RainCatcher
|
2
2
|
|
3
|
-
_RainCatcher_ utilises the [raindrops](https://bogomips.org/raindrops/) statistics tool to automatically log queue data for _Rack_ web servers (e.g. [Unicorn](https://bogomips.org/unicorn/)
|
3
|
+
_RainCatcher_ utilises the [raindrops](https://bogomips.org/raindrops/) statistics tool to automatically log queue data for _Rack_ web servers (e.g. [Unicorn](https://bogomips.org/unicorn/)) running _Rails_.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
9
|
```ruby
|
10
|
-
gem 'rain_catcher', '~> 0.1.
|
10
|
+
gem 'rain_catcher', '~> 0.1.3'
|
11
11
|
```
|
12
12
|
|
13
13
|
And rebuild your bundle:
|
data/lib/rain_catcher/version.rb
CHANGED
data/rain_catcher.gemspec
CHANGED
@@ -9,6 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.version = RainCatcher::VERSION
|
10
10
|
spec.authors = ['Bob Farrell']
|
11
11
|
spec.email = ['robertanthonyfarrell@gmail.com']
|
12
|
+
spec.licenses = ['MIT']
|
12
13
|
|
13
14
|
spec.summary = 'Automatically log Raindrops statistics'
|
14
15
|
spec.description = 'Rails application statistic logging with Raindrops'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rain_catcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bob Farrell
|
@@ -148,6 +148,7 @@ files:
|
|
148
148
|
- ".rubocop.yml"
|
149
149
|
- Gemfile
|
150
150
|
- Gemfile.lock
|
151
|
+
- LICENSE
|
151
152
|
- Makefile
|
152
153
|
- README.md
|
153
154
|
- Rakefile
|
@@ -159,7 +160,8 @@ files:
|
|
159
160
|
- lib/rain_catcher/version.rb
|
160
161
|
- rain_catcher.gemspec
|
161
162
|
homepage: https://github.com/bobf/rain_catcher
|
162
|
-
licenses:
|
163
|
+
licenses:
|
164
|
+
- MIT
|
163
165
|
metadata: {}
|
164
166
|
post_install_message:
|
165
167
|
rdoc_options: []
|