rails-labeled_log 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: ed22b778f0ef5fbc0010af12991a4c57bc1635b7
4
- data.tar.gz: 859bd6d98f0e98b8573e09cdf820ea321a129f00
3
+ metadata.gz: 37939253e47c87b3d966361c40151773528e9d6f
4
+ data.tar.gz: 25a59ed9ef4ace3ec2df5a7899763531106ad1d4
5
5
  SHA512:
6
- metadata.gz: b511c221332d1887f5542a7eb8dbd8721e8c3162a9d3dcde933687f02e710c70e40b9c143281f15886c6618038a0db7758aaaf2a8dfa90a5df640e86d610278a
7
- data.tar.gz: 5d764e179e741966a7cfacf6df115a0ba70d7fe6fabb80ec3bb11e73e515e7136fd038f638adea88c187fbc459993f3b0d6589a8e9f064014d83de752dbeaa1a
6
+ metadata.gz: d82bb06b312e475914857157dbe1288e8d9dfe7dfb93c43a9181b40698b0813d1728d0dfe3afae51be50e13b405eac11e15d3a73b27137950e3265b9e65ff97e
7
+ data.tar.gz: b785fd8d5d2099d48a782f4029a014da600ca9cf6a3f95ce7062cc6f1fd30212b17607207b192c827e5b5c1aefd6d08457cf3f78d94c98dfcf2b672f7dedcbe8
data/.rspec CHANGED
@@ -1,2 +1,3 @@
1
1
  --color
2
2
  --format documentation
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 2.1.7
5
+ - 2.2.3
6
+ script: bundle exec rspec
data/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Rails Labeled Log
2
- A tool to use easily Rails Tagged Logging in your Ruby classes.
2
+ A tool to use Rails Tagged Logging easily in your Ruby classes.
3
+
4
+ [![Gem Version](https://badge.fury.io/rb/rails-labeled_log.svg)](http://badge.fury.io/rb/rails-labeled_log)
5
+ [![Build Status](https://travis-ci.org/prodis/rails-labeled_log.svg?branch=master)](https://travis-ci.org/prodis/rails-labeled_log)
6
+ [![Coverage Status](https://coveralls.io/repos/prodis/rails-labeled_log/badge.svg?branch=master&service=github)](https://coveralls.io/github/prodis/rails-labeled_log?branch=master)
7
+ [![Code Climate](https://codeclimate.com/github/prodis/rails-labeled_log/badges/gpa.svg)](https://codeclimate.com/github/prodis/rails-labeled_log)
8
+ [![Dependency Status](https://gemnasium.com/prodis/rails-labeled_log.svg)](https://gemnasium.com/prodis/rails-labeled_log)
3
9
 
4
10
  ## Installing
5
11
 
@@ -75,6 +81,7 @@ In the Rails Log:
75
81
  - debug
76
82
  - fatal
77
83
 
84
+
78
85
  ## Author
79
86
  [Fernando Hamasaki de Amorim (prodis)](http://prodis.blog.br)
80
87
 
@@ -1,5 +1,5 @@
1
1
  module Rails
2
2
  module LabeledLog
3
- VERSION = '0.0.1'
3
+ VERSION = '0.0.2'
4
4
  end
5
5
  end
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
7
7
  spec.version = Rails::LabeledLog::VERSION
8
8
  spec.author = 'Prodis a.k.a. Fernando Hamasaki de Amorim'
9
9
  spec.email = 'prodis@gmail.com'
10
- spec.summary = 'A tool to use easily Rails Tagged Logging in your Ruby classes.'
10
+ spec.summary = 'A tool to use Rails Tagged Logging easily in your Ruby classes.'
11
11
  spec.description = spec.summary
12
12
  spec.homepage = 'https://github.com/prodis/rails-labeled_log'
13
13
  spec.license = 'MIT'
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
17
  spec.require_paths = ['lib']
18
18
 
19
- spec.platform = Gem::Platform::RUBY
19
+ spec.platform = Gem::Platform::RUBY
20
20
  spec.required_ruby_version = '>= 2.0.0'
21
21
 
22
22
  spec.add_runtime_dependency 'rails', '>= 3.2'
@@ -1,5 +1,3 @@
1
- require 'spec_helper'
2
-
3
1
  describe Rails::LabeledLog::Logger do
4
2
  subject { described_class.new('Chefe', 'Pixel') }
5
3
 
@@ -1,5 +1,3 @@
1
- require 'spec_helper'
2
-
3
1
  module FakeModule
4
2
  class FakeClass
5
3
  include Rails::LabeledLog::Logging
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,6 @@
1
- require 'rails-labeled_log'
2
1
  require 'coveralls'
3
2
  require 'rails'
3
+ require 'rails-labeled_log'
4
4
 
5
5
  Coveralls.wear!
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-labeled_log
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prodis a.k.a. Fernando Hamasaki de Amorim
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-21 00:00:00.000000000 Z
11
+ date: 2015-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: A tool to use easily Rails Tagged Logging in your Ruby classes.
83
+ description: A tool to use Rails Tagged Logging easily in your Ruby classes.
84
84
  email: prodis@gmail.com
85
85
  executables: []
86
86
  extensions: []
@@ -88,6 +88,7 @@ extra_rdoc_files: []
88
88
  files:
89
89
  - ".gitignore"
90
90
  - ".rspec"
91
+ - ".travis.yml"
91
92
  - CODE_OF_CONDUCT.md
92
93
  - Gemfile
93
94
  - LICENSE
@@ -128,5 +129,5 @@ rubyforge_project:
128
129
  rubygems_version: 2.4.5.1
129
130
  signing_key:
130
131
  specification_version: 4
131
- summary: A tool to use easily Rails Tagged Logging in your Ruby classes.
132
+ summary: A tool to use Rails Tagged Logging easily in your Ruby classes.
132
133
  test_files: []