log-me 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -7,7 +7,7 @@ LogMe is especially useful when you need to log Web Service calls or HTTP reques
7
7
  == Instalation
8
8
 
9
9
  === Gemfile
10
- gem 'log-me', '~> 0.0.1'
10
+ gem 'log-me', '~> 0.0.2'
11
11
 
12
12
  === Command line
13
13
  $ gem install log-me
@@ -38,7 +38,7 @@ By default will be logged in STDOUT using log level :info:
38
38
  I, [2011-08-24T01:22:52.677395 #3026] INFO -- : I am logging something here.
39
39
 
40
40
  Your gem consumer can configure the logger:
41
- CoolGem.configure_me do |config|
41
+ CoolGem.configure do |config|
42
42
  config.log_enabled = false # Disable log
43
43
  config.log_level = :debug # Change the log level
44
44
  config.logger = Rails.logger # Use the Rails logger
data/Rakefile CHANGED
@@ -19,7 +19,7 @@ Jeweler::Tasks.new do |gem|
19
19
  gem.homepage = "http://github.com/prodis/log-me"
20
20
  gem.license = "MIT"
21
21
  gem.summary = %Q{A simple way to configure log in your gem.}
22
- gem.description = %Q{LogMe is a simple way to configure log in your gem and it's especially useful when you need to log Web Service calls or HTTP requests and responses.}
22
+ gem.description = %Q{LogMe is a simple way to configure log in your gem. It's especially useful when you need to log Web Service calls or HTTP requests and responses.}
23
23
  gem.email = "prodis@gmail.com"
24
24
  gem.authors = ["Prodis a.k.a. Fernando Hamasaki"]
25
25
  gem.version = LogMe::Version::VERSION
data/lib/logme/version.rb CHANGED
@@ -3,7 +3,7 @@ module LogMe
3
3
  module Version
4
4
  MAJOR = 0
5
5
  MINOR = 0
6
- PATCH = 1
6
+ PATCH = 2
7
7
  VERSION = [MAJOR, MINOR, PATCH].join(".")
8
8
  end
9
9
  end
data/log-me.gemspec CHANGED
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{log-me}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Prodis a.k.a. Fernando Hamasaki"]
12
- s.date = %q{2011-08-28}
13
- s.description = %q{LogMe is a simple way to configure log in your gem and it's especially useful when you need to log Web Service calls or HTTP requests and responses.}
12
+ s.date = %q{2011-08-29}
13
+ s.description = %q{LogMe is a simple way to configure log in your gem. It's especially useful when you need to log Web Service calls or HTTP requests and responses.}
14
14
  s.email = %q{prodis@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "README.rdoc"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: log-me
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Prodis a.k.a. Fernando Hamasaki
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-08-28 00:00:00 -03:00
13
+ date: 2011-08-29 00:00:00 -03:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -57,7 +57,7 @@ dependencies:
57
57
  type: :development
58
58
  prerelease: false
59
59
  version_requirements: *id004
60
- description: LogMe is a simple way to configure log in your gem and it's especially useful when you need to log Web Service calls or HTTP requests and responses.
60
+ description: LogMe is a simple way to configure log in your gem. It's especially useful when you need to log Web Service calls or HTTP requests and responses.
61
61
  email: prodis@gmail.com
62
62
  executables: []
63
63