log_sweeper 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bd0748e38c19967141c34eecdc9b748b80542a15f6e863dd2dd4d60869e1069
4
- data.tar.gz: baac5ec981df3fe90b6f807b1e6d93b3d2af4589b6639d94eea7b2115e9fa554
3
+ metadata.gz: 111f56f44bfe6d6b15ef828eafe2f228d5aec83b065fbf51ce52c0ba1c4cc8cd
4
+ data.tar.gz: 2c1185b851704143399ba64dfc1135d1b109a253da02a2240e27079c8e3f30b5
5
5
  SHA512:
6
- metadata.gz: 3e13eae27b6e80a1b1900736e71f7752781432682e97fe6ab222a6426421901e1af3eafef05271bfc96e8f308b6ffae9eab5d0a7699ecb0edb66f44a6775147a
7
- data.tar.gz: 5d026bdf9016299687e09e56ab602ffa3abca64210c6e136f9df5ed11a9c2552c5d4fb4c7c9506a1e6cb26172e2283a85689fb1540304e65632984770216eecc
6
+ metadata.gz: c72400ca94cab881f05ab9cde7d4618f3de6b78af8a9fbb6fbdc3fb6b45b5aaa5bfcb9fa1ec99a9c7a41a4076d9b82679903af4abefd92a5d82aa1a93c97b6ce
7
+ data.tar.gz: 6b3b28fface8383930cfba5063ae3c02036236e947cd0ed3fc560ea97db7dc054f8bb35b3f7faba8edfc8e93ba2b1e24c882a7253e5cabb7f7379d0329984bbc
data/README.md CHANGED
@@ -6,7 +6,7 @@ It is designed to be used with Ruby logger rotation. By default, it will remove
6
6
 
7
7
  ## Installation
8
8
 
9
- Juts add `gem "log_sweeper"` to your Gemfile.
9
+ Simply add `gem "log_sweeper"` to your Gemfile.
10
10
 
11
11
  ## Examples
12
12
 
@@ -29,6 +29,10 @@ every 1.hour do
29
29
  end
30
30
  ```
31
31
 
32
+ ## Contributing
33
+
34
+ Bug reports and pull requests are welcome on GitHub at https://github.com/umbrellio/log_sweeper.
35
+
32
36
  ## License
33
37
 
34
38
  Released under MIT License.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LogSweeper
4
- VERSION = "1.1.0"
4
+ VERSION = "1.1.1"
5
5
  end
@@ -10,18 +10,12 @@ Gem::Specification.new do |spec|
10
10
  spec.authors = ["Yuri Smirnov"]
11
11
  spec.email = ["tycooon@yandex.ru"]
12
12
 
13
- spec.summary = "TBD"
14
- spec.description = "TBD"
13
+ spec.summary = "A simple module for cleaning up log directories."
14
+ spec.description = "LogSweeper is a simple module for cleaning up log directories."
15
15
  spec.homepage = "https://github.com/umbrellio/log_sweeper"
16
16
  spec.license = "MIT"
17
17
 
18
- # Specify which files should be added to the gem when it is released.
19
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
20
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
21
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
- end
23
- spec.bindir = "exe"
24
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^spec/}) }
25
19
  spec.require_paths = ["lib"]
26
20
 
27
21
  spec.add_development_dependency "bundler"
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: log_sweeper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuri Smirnov
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2019-02-03 00:00:00.000000000 Z
12
12
  dependencies:
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description: TBD
97
+ description: LogSweeper is a simple module for cleaning up log directories.
98
98
  email:
99
99
  - tycooon@yandex.ru
100
100
  executables: []
@@ -134,5 +134,5 @@ requirements: []
134
134
  rubygems_version: 3.0.1
135
135
  signing_key:
136
136
  specification_version: 4
137
- summary: TBD
137
+ summary: A simple module for cleaning up log directories.
138
138
  test_files: []