rails_log_autotruncator 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +5 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/rails_log_autotruncator.gemspec +2 -2
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -15,7 +15,11 @@ Add the rails_log_autotruncator to your Gemfile:
|
|
15
15
|
gem 'rails_log_autotruncator'
|
16
16
|
|
17
17
|
=== Rails 2 Without Bundler
|
18
|
-
|
18
|
+
do:
|
19
|
+
|
20
|
+
gem install rails_log_autotruncator
|
21
|
+
|
22
|
+
then write the following to your environment.rb to Rails::Initializer.run block:
|
19
23
|
|
20
24
|
config.gem "rails_log_autotruncator", :lib => "rails_log_autotruncator"
|
21
25
|
|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ Jeweler::Tasks.new do |gem|
|
|
8
8
|
gem.homepage = "http://github.com/plashchynski/rails_log_autotruncator"
|
9
9
|
gem.license = "MIT"
|
10
10
|
gem.summary = %Q{The tool for automatically rotating and truncating a rails development log file}
|
11
|
-
gem.description = %Q{rails_log_autotruncator is a simple patch for ActiveSupport::BufferedLogger that limits a log file size. Use it if you just don't want your rails project development log file becomes large.}
|
11
|
+
gem.description = %Q{rails_log_autotruncator is a simple patch for ActiveSupport::BufferedLogger that limits a log file size. Use it if you just don't want your rails project development or test log file becomes large.}
|
12
12
|
gem.email = "plashchynski@gmail.com"
|
13
13
|
gem.authors = ["Dmitry Plashchynski"]
|
14
14
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rails_log_autotruncator}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Dmitry Plashchynski"]
|
12
12
|
s.date = %q{2011-04-10}
|
13
|
-
s.description = %q{rails_log_autotruncator is a simple patch for ActiveSupport::BufferedLogger that limits a log file size. Use it if you just don't want your rails project development log file becomes large.}
|
13
|
+
s.description = %q{rails_log_autotruncator is a simple patch for ActiveSupport::BufferedLogger that limits a log file size. Use it if you just don't want your rails project development or test log file becomes large.}
|
14
14
|
s.email = %q{plashchynski@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE.txt",
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: rails_log_autotruncator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.2.
|
5
|
+
version: 0.2.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Dmitry Plashchynski
|
@@ -45,7 +45,7 @@ dependencies:
|
|
45
45
|
version: "0"
|
46
46
|
type: :development
|
47
47
|
version_requirements: *id003
|
48
|
-
description: rails_log_autotruncator is a simple patch for ActiveSupport::BufferedLogger that limits a log file size. Use it if you just don't want your rails project development log file becomes large.
|
48
|
+
description: rails_log_autotruncator is a simple patch for ActiveSupport::BufferedLogger that limits a log file size. Use it if you just don't want your rails project development or test log file becomes large.
|
49
49
|
email: plashchynski@gmail.com
|
50
50
|
executables: []
|
51
51
|
|