crtu 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88c62b01668cad038d2edd7d4d9ac51e986ded33
4
- data.tar.gz: 3c1feda010457b8aaf07c3c31f7a3b98193d4610
3
+ metadata.gz: 8011fcb1515031905c63c274f2c8d4927c3dbaf1
4
+ data.tar.gz: 723268289b609c30a37aa89424b6cda4026ca09c
5
5
  SHA512:
6
- metadata.gz: 27d90120dc1b5b99268332e1829a4d69eeecc555c2219dc3711c7dbcb13b4c07191b3d91c19ac69c3bf4b6bfcb10a1b2e959949222fd0e1c27cc76c582cfc278
7
- data.tar.gz: c3d253b3631a865f7800108b6fb5eed095444e7a5aef027f1b44bed1201fe8bd022d36d4a37ce6bcf47136c272746253bf523dfb68787fe45d02650185907957
6
+ metadata.gz: c9433b0bf72c2871a24714248cb333821bb14682426c7cb18911970af6d36b41e3726f501370716dff64b955999a219f84f315b549977a6fc5db9ba942682355
7
+ data.tar.gz: d0c6a00998d7b4c0bc9c3ed2fb35c6345c50fd1b507c8272d4e349a496c7ef3d6de9eaccf9c6f8e467b4b59c8cb396fb9b4e61fb5c9eb905dca01bf508792e1a
data/.gitignore CHANGED
@@ -10,6 +10,8 @@
10
10
  /test/version_tmp/
11
11
  /tmp/
12
12
  *.idea
13
+ logs/
14
+ reports/
13
15
 
14
16
  # Used by dotenv library to load environment variables.
15
17
  # .env
data/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ [![Gem Version](https://badge.fury.io/rb/crtu.svg)](https://badge.fury.io/rb/crtu)
2
+ [![Build Status](https://travis-ci.org/Th33x1l3/CRTU.svg?branch=master)](https://travis-ci.org/Th33x1l3/CRTU)
3
+
1
4
  CRTU
2
5
 
3
6
  Cucumber Ruby Test Utilities
@@ -1,5 +1,5 @@
1
1
  require "crtu/version"
2
-
2
+ require 'crtu/utils/logger'
3
3
  module Crtu
4
4
  # Your code goes here...
5
5
  end
@@ -113,7 +113,7 @@ module Utils
113
113
 
114
114
 
115
115
  # Class wide console and file logger. Message appears on console output and it's stored on file
116
- def mix_logger
116
+ def all_logger
117
117
  log_file = (LOCAL_LOGGER_LOG_FILE.nil?) ? "/tmp/" + self.class.to_s + ".log" : LOCAL_LOGGER_LOG_FILE
118
118
  @logger = Log4r::Logger.new("LocalLoggerConsoleAndFile")
119
119
  pf = PatternFormatter.new(:pattern => "[%l] : #{self.class} @ %d : %M")
@@ -1,3 +1,3 @@
1
1
  module Crtu
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crtu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fábio André Ramos Rodrigues