wirb 2.2.1 → 2.2.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
  SHA256:
3
- metadata.gz: ae02965fe8a6df1c0f46d6947d0d1b5695b2f786c18e9d3bc3ed0d7fb6bc1695
4
- data.tar.gz: 67dce3fb84c5f3f62c6b11c4f60aaeba731fed20b1c91b7881e31c082bc452b5
3
+ metadata.gz: 5bb7682a36323e7f6091949c181a0d0dba6749959d8fe8722786c78f68b4b965
4
+ data.tar.gz: b09786d2784b0bfffa33a2106537a756ae442b79495accfe5038e42ca6e0573d
5
5
  SHA512:
6
- metadata.gz: c3e56248f8a2dc4ee2c35f1728b2da62d90baf96d4b946bd9d0c0b75dfd211a0deb08a4e25cc4bf77005d819eb0d05b4a0408921d6949b935ffc079215a086fa
7
- data.tar.gz: eba0a434f7c0057b6951d7d3affbe86dee0e652f08d42e89a1406d37e2389395459b405cf4a75698068d0a5cdea561c330199a90954e805928e18fe95dd9157b
6
+ metadata.gz: cde9e32b55bdcb44d9f8b39211198aa426ef7c23b0e95bea38dddf0cbd6ea2a13531a07687f753a32201dd91f6eeed5d18ded3dd9e9df27892e5530fc92a38f9
7
+ data.tar.gz: 387112604206f5727d2df2689efc2077e642eefc467242523f1b7caa12d6d3f1bfd7683b88acc90de6eb4716c4453c3770593d4cd7200c3fc8783da740b302f5
@@ -1,3 +1,6 @@
1
+ ## 2.2.2
2
+ * Relax Ruby version requirement to allow 3.0
3
+
1
4
  ## 2.2.1
2
5
  * Fix new timestamp matching
3
6
 
@@ -1,4 +1,4 @@
1
- Copyright (C) 2011-2019 Jan Lelis <mail@janlelis.de>
1
+ Copyright (C) 2011-2020 Jan Lelis <https://janlelis.com>
2
2
  Copyright (C) 2006-2009 Paul Duncan <pabs@pablotron.org>
3
3
 
4
4
  Permission is hereby granted, free of charge, to any person obtaining a
data/README.md CHANGED
@@ -1,16 +1,13 @@
1
- ## WIRB Interactive Ruby [![version](https://badge.fury.io/rb/wirb.svg)](https://badge.fury.io/rb/wirb) [<img src="https://travis-ci.org/janlelis/wirb.png" />](https://travis-ci.org/janlelis/wirb)
1
+ ## WIRB Interactive Ruby [![version](https://badge.fury.io/rb/wirb.svg)](https://badge.fury.io/rb/wirb) [<img src="https://github.com/janlelis/wirb/workflows/Test/badge.svg" />](https://github.com/janlelis/wirb/actions?query=workflow%3ATest)
2
2
 
3
3
  The **WIRB** gem syntax highlights Ruby objects. Works best as your default REPL inspector (see usage section below), but does not require IRB.
4
4
 
5
- Supported Rubies: 2.7, 2.6, 2.5, 2.4
5
+ Supported Rubies: 3.0, 2.7, 2.6, 2.5
6
6
 
7
- Older Rubies, should work: 2.3, 2.2, 2.1, 2.0, rubinius
7
+ Older Rubies, should work: 2.4, 2.3, 2.2, 2.1, 2.0, rubinius
8
8
 
9
9
  Ancient Rubies (1.9, 1.8): Please use [WIRB 1.0](https://github.com/janlelis/wirb/tree/1.0.3)
10
10
 
11
- [See it in action](https://travis-ci.org/janlelis/wirb/jobs/56299603)
12
-
13
-
14
11
  ## Features
15
12
 
16
13
  * Syntax highlighting for inspected Ruby objects
@@ -70,7 +67,7 @@ If you run into problems using WIRB with Rails, try [the solution in this issue]
70
67
 
71
68
  ## Credits
72
69
 
73
- Copyright (c) 2011-2019 Jan Lelis <https://janlelis.com> see COPYING for details.
70
+ Copyright (c) 2011-2020 Jan Lelis <https://janlelis.com> see COPYING for details.
74
71
 
75
72
  First tokenizer version was based on the [wirble](https://rubygems.org/gems/wirble) gem:
76
73
  Copyright (C) 2006-2009 Paul Duncan <pabs@pablotron.org>
data/Rakefile CHANGED
@@ -1,14 +1,12 @@
1
1
  require 'rake'
2
2
  require 'fileutils'
3
- require "rspec/core/rake_task"
3
+
4
4
  task :default => :spec
5
5
  task :test => :spec
6
6
 
7
- RSpec::Core::RakeTask.new(:spec) do |t|
8
- t.rspec_opts = [
9
- '--color',
10
- '-r ' + File.expand_path( File.join( 'spec', 'spec_helper') ),
11
- ]
7
+ desc "Run tests"
8
+ task :spec do
9
+ sh "rspec"
12
10
  end
13
11
 
14
12
  def gemspec
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wirb
4
- VERSION = '2.2.1'
4
+ VERSION = '2.2.2'
5
5
  end
@@ -5,16 +5,16 @@ Gem::Specification.new do |s|
5
5
  s.name = "wirb"
6
6
  s.version = Wirb::VERSION.dup
7
7
  s.authors = ["Jan Lelis"]
8
- s.email = "mail@janlelis.de"
8
+ s.email = ["hi@ruby.consulting"]
9
9
  s.homepage = "https://github.com/janlelis/wirb"
10
10
  s.summary = "WIRB Interactive Ruby"
11
- s.description = "WIRB highlights inspected Ruby objects. It is based on the original Wirble. You can create new color schemas using yaml."
12
- s.required_ruby_version = '~> 2.0'
11
+ s.description = "WIRB syntax highlights inspected Ruby objects"
12
+ s.required_ruby_version = '>= 2.0', '< 4.0'
13
13
  s.files = Dir.glob(%w[{lib,test,spec}/**/*.rb bin/* [A-Z]*.{txt,md} ext/**/*.{rb,c} data/**/*.yml]) + %w{Rakefile wirb.gemspec}
14
14
  s.extra_rdoc_files = ["README.md", "CHANGELOG.md", "COPYING.txt"]
15
15
  s.license = 'MIT'
16
16
  s.add_dependency 'paint', '>= 0.9', '< 3.0'
17
17
  s.add_development_dependency 'rspec', '~> 2.14'
18
- s.add_development_dependency 'rake', '~> 10.4'
18
+ s.add_development_dependency 'rake', '~> 13.0'
19
19
  s.add_development_dependency 'ruby_engine', '~> 1.0'
20
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wirb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-26 00:00:00.000000000 Z
11
+ date: 2020-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: paint
@@ -50,14 +50,14 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '10.4'
53
+ version: '13.0'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '10.4'
60
+ version: '13.0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: ruby_engine
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -72,9 +72,9 @@ dependencies:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
74
  version: '1.0'
75
- description: WIRB highlights inspected Ruby objects. It is based on the original Wirble.
76
- You can create new color schemas using yaml.
77
- email: mail@janlelis.de
75
+ description: WIRB syntax highlights inspected Ruby objects
76
+ email:
77
+ - hi@ruby.consulting
78
78
  executables: []
79
79
  extensions: []
80
80
  extra_rdoc_files:
@@ -124,9 +124,12 @@ require_paths:
124
124
  - lib
125
125
  required_ruby_version: !ruby/object:Gem::Requirement
126
126
  requirements:
127
- - - "~>"
127
+ - - ">="
128
128
  - !ruby/object:Gem::Version
129
129
  version: '2.0'
130
+ - - "<"
131
+ - !ruby/object:Gem::Version
132
+ version: '4.0'
130
133
  required_rubygems_version: !ruby/object:Gem::Requirement
131
134
  requirements:
132
135
  - - ">="