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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 71a22899a3d1d7f4bda137a6cd5870a4d3d01629
4
- data.tar.gz: b2cd09c4383cc52c1569c5939a0cc51cb20e83d4
3
+ metadata.gz: ce115f3181516fef1252b56d4d414a702aa873f6
4
+ data.tar.gz: dee114bda45f42820b08f7aae7fec99ef7dd638f
5
5
  SHA512:
6
- metadata.gz: c78d2cd26a50bda25c458e02411dfac95fedb1acd58fcfba2058465bd66b8964ebdf06868ba3bbf602579fa5838e6e6aaaa9bd6502ba88058f81243ccf4b0d78
7
- data.tar.gz: e95c275524c76ff3161ffa8c4dd4b6d9f64bd20c25401b6bec83d26e55683e3b930fccd5dbdfb1928d3060fec38710229626fb3dd0bd560062ca4ffa0aea6847
6
+ metadata.gz: b102774542df7ab83b50e6b9b3ee1c3a2bf2caae7ffd3e709843aec3417d5a084c9c7333eb756fb708c847ffe7ef86bd77b5271f5a005995a41f89169939c9a6
7
+ data.tar.gz: 9ac5e085df2a614a2d5a70c112d2218e2bf47e2bcb4857c9f70767b2b7fbcefe648e23daa88276189048fb13118a8e80153e73574651ebbb4572d6d2a4058911
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Firudo
2
2
 
3
- TODO: Write a gem description
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
- TODO: Write usage instructions here
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
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module Firudo
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
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.1
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: []