firudo 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -2
- data/firudo.gemspec +1 -1
- data/lib/firudo/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce115f3181516fef1252b56d4d414a702aa873f6
|
4
|
+
data.tar.gz: dee114bda45f42820b08f7aae7fec99ef7dd638f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b102774542df7ab83b50e6b9b3ee1c3a2bf2caae7ffd3e709843aec3417d5a084c9c7333eb756fb708c847ffe7ef86bd77b5271f5a005995a41f89169939c9a6
|
7
|
+
data.tar.gz: 9ac5e085df2a614a2d5a70c112d2218e2bf47e2bcb4857c9f70767b2b7fbcefe648e23daa88276189048fb13118a8e80153e73574651ebbb4572d6d2a4058911
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Firudo
|
2
2
|
|
3
|
-
|
3
|
+
Provides simple logging into log files (/log/development.log || /log/production.log) and filtering security parameters from logs for Sinatra based applications.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -20,7 +20,10 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
|
23
|
+
register Sinatra::Firudo
|
24
|
+
Sinatra::Firudo.filter_attributes alf, :password
|
25
|
+
|
26
|
+
(attribute `alf` is required to pass for now)
|
24
27
|
|
25
28
|
## Contributing
|
26
29
|
|
data/firudo.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Firudo::VERSION
|
9
9
|
spec.authors = ["Ostap Ivanyshyn"]
|
10
10
|
spec.email = ["otan256@gmail.com"]
|
11
|
-
spec.summary = %q{Provides writing logs into files and filtering secure data.}
|
11
|
+
spec.summary = %q{Provides writing logs into files and filtering secure data for Sinatra based applications.}
|
12
12
|
spec.homepage = "https://github.com/ostaptan/firudo"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
data/lib/firudo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: firudo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ostap Ivanyshyn
|
@@ -91,5 +91,6 @@ rubyforge_project:
|
|
91
91
|
rubygems_version: 2.2.2
|
92
92
|
signing_key:
|
93
93
|
specification_version: 4
|
94
|
-
summary: Provides writing logs into files and filtering secure data
|
94
|
+
summary: Provides writing logs into files and filtering secure data for Sinatra based
|
95
|
+
applications.
|
95
96
|
test_files: []
|