regtest 2.1.0 → 2.1.1

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
  SHA256:
3
- metadata.gz: f5b02a7c607d5735101137dcc7e5bac179d8edb3be167ff73b8b68d0dee9e4b0
4
- data.tar.gz: 317570205b1fabd4134fcf8760a5cea3205b9b52f9a4e8275b0d786f782a1ebe
3
+ metadata.gz: 2d15eabea535c8e361dcec4df64582beb129f9c4bf08d6df27c322240f0f870f
4
+ data.tar.gz: 0e0a136a15d672c56ece53190ee1b727fad498611295b5973f31d72a728e72e2
5
5
  SHA512:
6
- metadata.gz: 7af88f7231a95bc5b98544bcd22f6b9a2e6ee8fd5fea378a86dcf80a344ca4d0dedd13d9bd2777cc15362802dd887e05abe70330bdb5c7b1bcc8ad4d6753d00c
7
- data.tar.gz: d3f6c5f59cbf50915b6f8ce54f56713f0a60bdf8bd54c9a0120a1c2ca4a7884a51fc2d967d9cc6d0e87280d600e8be104b1f4f6b8852130e69c548cf2dbeece6
6
+ metadata.gz: ea81ad6c4e7ad51cbd42a4d9663d3690bccde7e30c49fdb6f34e2154f4932b89b6065c82b98a6d2bc39549debad79bc0a641aff6b8b53822ae5976ab09f0f5cd
7
+ data.tar.gz: aed5b5a5bbe84989017e8d689b4cc2786ed00018b30afb935ffb6e982508ef72d6383946181f3093e136b86421216c4d4e08ec83aedb70b85ccd42f2d02a8d4f
data/Changelog CHANGED
@@ -1,3 +1,6 @@
1
+ 2.1.1
2
+ Adapt remaining examples of regtest/colorize to regtest/colors.
3
+
1
4
  2.1.0
2
5
  Use Process.clock_gettime for time measurements.
3
6
  Eliminate dependency to colorize gem. So Regtest has no longer any
data/README.md CHANGED
@@ -159,10 +159,10 @@ For example the following is a good default when you want colorized output and
159
159
  use git as your SCM:
160
160
 
161
161
  ```ruby
162
- require 'regtest/colorize'
162
+ require 'regtest/colors'
163
163
  # adapt some colorizing if wanted
164
- Regtest::Colorize.mapping[:filename] = :cyan
165
- Regtest::Colorize.mapping[:statistics] = {color: :blue, mode: :italic}
164
+ Regtest::Colors.mapping[:filename] = :cyan
165
+ Regtest::Colors.mapping[:statistics] = %i(blue italic)
166
166
 
167
167
  require 'regtest/git'
168
168
  ```
@@ -106,7 +106,7 @@ module Regtest
106
106
  end
107
107
 
108
108
  # Report text to output with possible type, could be overwritten
109
- # by plugins e.g. regtest/colorize.
109
+ # by plugins e.g. regtest/colors.
110
110
  def report *args, type: nil
111
111
  puts *args
112
112
  end
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Regtest
5
- VERSION = '2.1.0'
5
+ VERSION = '2.1.1'
6
6
  end
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: regtest 2.1.0 ruby lib
2
+ # stub: regtest 2.1.1 ruby lib
3
3
  #
4
4
  # This file is automatically generated by rim.
5
5
  # PLEASE DO NOT EDIT IT DIRECTLY!
@@ -7,15 +7,15 @@
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "regtest"
10
- s.version = "2.1.0"
10
+ s.version = "2.1.1"
11
11
 
12
12
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
13
13
  s.require_paths = ["lib"]
14
14
  s.authors = ["Jan Friedrich"]
15
- s.date = "2019-03-04"
15
+ s.date = "2019-03-26"
16
16
  s.description = "This library supports a very simple way to do regression testing with Ruby. It\nis not limited to Ruby projects you can use it also in other contexts where you\ncan extract data with Ruby.\n\nYou write Ruby scripts with samples. Run these and get the sample results as\nresults files besides your scripts. Check both the scripts and the results\nfiles in you Source Code Management System (SCM). When you run the scrips on a\nlater (or even previous) version of your code a simple diff show you if and how\nthe changes in your code or environment impact the results of your samples.\n\nThis is not a replacement for unit testing but a complement: You can produce a\nlot of samples with a small amount of Ruby code (e.g. a large number of\ncombinations of data).\n"
17
17
  s.email = "janfri26@gmail.com"
18
- s.files = ["./.aspell.pws", "Changelog", "Gemfile", "LICENSE", "README.md", "Rakefile", "lib/regtest", "lib/regtest.rb", "lib/regtest/colorize.rb", "lib/regtest/colors.rb", "lib/regtest/git.rb", "lib/regtest/task.rb", "lib/regtest/version.rb", "regtest.gemspec", "regtest/combinations.rb", "regtest/combinations.yml", "regtest/examples.rb", "regtest/examples.yml", "regtest/filename with spaces.rb", "regtest/filename with spaces.yml", "regtest/metatest.rb", "regtest/metatest.yml", "regtest/metatest_git.rb", "regtest/metatest_git.yml", "regtest/no_samples.rb"]
18
+ s.files = ["Changelog", "Gemfile", "LICENSE", "README.md", "Rakefile", "lib/regtest", "lib/regtest.rb", "lib/regtest/colorize.rb", "lib/regtest/colors.rb", "lib/regtest/git.rb", "lib/regtest/task.rb", "lib/regtest/version.rb", "regtest.gemspec", "regtest/combinations.rb", "regtest/combinations.yml", "regtest/examples.rb", "regtest/examples.yml", "regtest/filename with spaces.rb", "regtest/filename with spaces.yml", "regtest/metatest.rb", "regtest/metatest.yml", "regtest/metatest_git.rb", "regtest/metatest_git.yml", "regtest/no_samples.rb"]
19
19
  s.homepage = "https://github.com/janfri/regtest"
20
20
  s.licenses = ["Ruby"]
21
21
  s.required_ruby_version = Gem::Requirement.new(">= 2.1.0")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: regtest
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Friedrich
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-04 00:00:00.000000000 Z
11
+ date: 2019-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -71,7 +71,6 @@ executables: []
71
71
  extensions: []
72
72
  extra_rdoc_files: []
73
73
  files:
74
- - "./.aspell.pws"
75
74
  - Changelog
76
75
  - Gemfile
77
76
  - LICENSE
@@ -114,8 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
113
  - !ruby/object:Gem::Version
115
114
  version: '0'
116
115
  requirements: []
117
- rubyforge_project:
118
- rubygems_version: 2.7.6
116
+ rubygems_version: 3.1.0.pre1
119
117
  signing_key:
120
118
  specification_version: 4
121
119
  summary: Simple regression testing with Ruby.
@@ -1,28 +0,0 @@
1
- personal_ws-1.1 en 27
2
- NOREGTESTRC
3
- md
4
- dir
5
- Bugfix
6
- ostruct
7
- ENV
8
- filename
9
- Gemfile
10
- basename
11
- Rakefile
12
- exiftool
13
- yml
14
- yaml
15
- workflow
16
- refactoring
17
- metatests
18
- catched
19
- regtest
20
- rb
21
- rc
22
- Friedrich
23
- SCM
24
- regtestrc
25
- metatest
26
- README
27
- OpenStruct
28
- gettime