logit 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. data/LICENSE +20 -0
  2. data/Manifest +3 -0
  3. data/Rakefile +2 -2
  4. data/init.rb +1 -0
  5. data/lib/logit.rb +1 -0
  6. data/logit.gemspec +5 -5
  7. metadata +9 -6
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Scott Sayles
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Manifest CHANGED
@@ -1,4 +1,7 @@
1
+ LICENSE
1
2
  README.rdoc
2
3
  Rakefile
4
+ init.rb
3
5
  lib/logit.rb
6
+ logit.gemspec
4
7
  Manifest
data/Rakefile CHANGED
@@ -2,8 +2,8 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('logit', '1.0.0') do |p|
6
- p.description = 'Easily add custom logging abilities.'
5
+ Echoe.new('logit', '1.0.1') do |p|
6
+ p.description = 'Easily add custom logging abilities to your Ruby or Rails application.'
7
7
  p.url = 'http://github.com/codemariner/logit'
8
8
  p.author = 'Scott Sayles'
9
9
  p.email = 'ssayles@users.sourceforge.net'
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'logit'
@@ -77,6 +77,7 @@ module Logit
77
77
  unless (path =~ /\.log$/)
78
78
  path << ".log"
79
79
  end
80
+ path
80
81
  end
81
82
 
82
83
  def logit_strip_dot_log(name)
@@ -2,21 +2,21 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{logit}
5
- s.version = "1.0.0"
5
+ s.version = "1.0.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Scott Sayles"]
9
9
  s.date = %q{2010-12-09}
10
- s.description = %q{Easily add custom logging abilities.}
10
+ s.description = %q{Easily add custom logging abilities to your Ruby or Rails application.}
11
11
  s.email = %q{ssayles@users.sourceforge.net}
12
- s.extra_rdoc_files = ["README.rdoc", "lib/logit.rb"]
13
- s.files = ["README.rdoc", "Rakefile", "lib/logit.rb", "Manifest", "logit.gemspec"]
12
+ s.extra_rdoc_files = ["LICENSE", "README.rdoc", "lib/logit.rb"]
13
+ s.files = ["LICENSE", "README.rdoc", "Rakefile", "init.rb", "lib/logit.rb", "logit.gemspec", "Manifest"]
14
14
  s.homepage = %q{http://github.com/codemariner/logit}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Logit", "--main", "README.rdoc"]
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = %q{logit}
18
18
  s.rubygems_version = %q{1.3.7}
19
- s.summary = %q{Easily add custom logging abilities.}
19
+ s.summary = %q{Easily add custom logging abilities to your Ruby or Rails application.}
20
20
 
21
21
  if s.respond_to? :specification_version then
22
22
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logit
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Scott Sayles
@@ -19,21 +19,24 @@ date: 2010-12-09 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
22
- description: Easily add custom logging abilities.
22
+ description: Easily add custom logging abilities to your Ruby or Rails application.
23
23
  email: ssayles@users.sourceforge.net
24
24
  executables: []
25
25
 
26
26
  extensions: []
27
27
 
28
28
  extra_rdoc_files:
29
+ - LICENSE
29
30
  - README.rdoc
30
31
  - lib/logit.rb
31
32
  files:
33
+ - LICENSE
32
34
  - README.rdoc
33
35
  - Rakefile
36
+ - init.rb
34
37
  - lib/logit.rb
35
- - Manifest
36
38
  - logit.gemspec
39
+ - Manifest
37
40
  has_rdoc: true
38
41
  homepage: http://github.com/codemariner/logit
39
42
  licenses: []
@@ -73,6 +76,6 @@ rubyforge_project: logit
73
76
  rubygems_version: 1.3.7
74
77
  signing_key:
75
78
  specification_version: 3
76
- summary: Easily add custom logging abilities.
79
+ summary: Easily add custom logging abilities to your Ruby or Rails application.
77
80
  test_files: []
78
81