watchbuffy 1.0.2 → 1.0.3

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
  SHA256:
3
- metadata.gz: df8fa7c51b4ea03333be170dc85d29cd44e685f72d566b79ab17411ea9a9b3e2
4
- data.tar.gz: 24ccfad72c083217c43e300c95c5fa12b1952e140739ca283a82efc2a5466961
3
+ metadata.gz: f980949c4166fb0bb97cc35bebea6456d2cd3200dec7ccd2572c1d4c931192fd
4
+ data.tar.gz: 22dd56b6879095df06282e3723ef630d77789f22ce93ae627d8b49d5621233ff
5
5
  SHA512:
6
- metadata.gz: cf5dbdea2fd9b892a07cc66389f519f98036f126c922ec8601209f8dc12e85d3a95fffe7ea368c138c73c92ec4c30725faab02e2fd8a923235cf50926d4cbd20
7
- data.tar.gz: 113d595ef45ff31642f5928816e4df2473b495d1ad5c3da5dea53eadfbed80e4dec9da24f64e6d7adf1eb2fb065020aa6a0c7ae926477c92282fe92a324adc35
6
+ metadata.gz: f76dc88fe8f603912334ffcd0567de2a0c21de82ba9511113b0694f112f22eee7a6c3b3b48d97b42490586644d33ca4d7d2b39d21105ecb6270b74bbe8c54eac
7
+ data.tar.gz: 1da173bd7926ffff73349be2bd428dbe591a639dc415999fbfb8c7ab67be4b9ef26817d455f844d653be5430fe18bd00917cd9d8fd5b2a04dde7b1cc9b8da48d
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.0.3
4
+
5
+ * Relax Ruby version requirement to allow Ruby 3.0
6
+
3
7
  ### 1.0.2
4
8
 
5
9
  * Add new option to ignore certain characters (only one supported by now)
@@ -1,4 +1,4 @@
1
- Copyright (c) 2018 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2018 Jan Lelis, https://janlelis.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # watchbuffy [![[version]](https://badge.fury.io/rb/watchbuffy.svg)](https://badge.fury.io/rb/watchbuffy) [![[travis]](https://travis-ci.org/janlelis/watchbuffy.svg)](https://travis-ci.org/janlelis/watchbuffy)
1
+ # watchbuffy [![[version]](https://badge.fury.io/rb/watchbuffy.svg)](https://badge.fury.io/rb/watchbuffy) [![[ci]](https://github.com/janlelis/watchbuffy/workflows/Test/badge.svg)](https://github.com/janlelis/watchbuffy/actions?query=workflow%3ATest)
2
2
 
3
3
  CLI utility which suggests a random Buffy or Angel episode to watch!
4
4
 
5
5
  ## Setup
6
6
 
7
- Make sure that your computer has [Ruby 2.0 or higher installed](http://ruby.about.com/od/tutorials/a/installruby.htm).
7
+ Make sure that your computer has Ruby 2.0 or higher installed.
8
8
 
9
9
  Then run
10
10
 
@@ -51,4 +51,4 @@ No episode found
51
51
 
52
52
  ## MIT License
53
53
 
54
- Copyright (C) 2018 Jan Lelis <http://janlelis.com>. Released under the MIT license.
54
+ Copyright (C) 2018 Jan Lelis <https://janlelis.com>. Released under the MIT license.
data/Rakefile CHANGED
@@ -32,7 +32,11 @@ end
32
32
 
33
33
  desc "#{gemspec.name} | Spec"
34
34
  task :spec do
35
- sh "for file in spec/*_spec.rb; do ruby $file; done"
35
+ if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
36
+ sh "for %f in (spec/\*.rb) do ruby spec/%f"
37
+ else
38
+ sh "for file in spec/*.rb; do ruby $file; done"
39
+ end
36
40
  end
37
41
  task default: :spec
38
42
 
@@ -1,4 +1,6 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Watchbuffy
2
- VERSION = "1.0.2".freeze
4
+ VERSION = "1.0.3"
3
5
  end
4
6
 
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = "Picks a random Buffy episode"
9
9
  gem.description = "Suggests a random Buffy or Angel episode to watch"
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting"]
12
12
  gem.homepage = "https://github.com/janlelis/watchbuffy"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.required_ruby_version = "~> 2.0"
20
+ gem.required_ruby_version = ">= 2.0"
21
21
 
22
22
  gem.add_dependency "rationalist"
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watchbuffy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-20 00:00:00.000000000 Z
11
+ date: 2021-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rationalist
@@ -26,14 +26,13 @@ dependencies:
26
26
  version: '0'
27
27
  description: Suggests a random Buffy or Angel episode to watch
28
28
  email:
29
- - mail@janlelis.de
29
+ - hi@ruby.consulting
30
30
  executables:
31
31
  - watchbuffy
32
32
  extensions: []
33
33
  extra_rdoc_files: []
34
34
  files:
35
35
  - ".gitignore"
36
- - ".travis.yml"
37
36
  - CHANGELOG.md
38
37
  - CODE_OF_CONDUCT.md
39
38
  - Gemfile
@@ -57,7 +56,7 @@ require_paths:
57
56
  - lib
58
57
  required_ruby_version: !ruby/object:Gem::Requirement
59
58
  requirements:
60
- - - "~>"
59
+ - - ">="
61
60
  - !ruby/object:Gem::Version
62
61
  version: '2.0'
63
62
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -66,8 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
65
  - !ruby/object:Gem::Version
67
66
  version: '0'
68
67
  requirements: []
69
- rubyforge_project:
70
- rubygems_version: 2.7.6
68
+ rubygems_version: 3.2.3
71
69
  signing_key:
72
70
  specification_version: 4
73
71
  summary: Picks a random Buffy episode
@@ -1,22 +0,0 @@
1
- sudo: false
2
- language: ruby
3
-
4
- rvm:
5
- - ruby-head
6
- - 2.5.1
7
- - 2.4.4
8
- - 2.3.7
9
- - 2.2
10
- - 2.1
11
- - 2.0
12
- - jruby-head
13
- - jruby-9.1.16.0
14
-
15
- matrix:
16
- allow_failures:
17
- - rvm: ruby-head
18
- - rvm: jruby-head
19
- - rvm: 2.2
20
- - rvm: 2.1
21
- - rvm: 2.0
22
- # fast_finish: true