redux 0.1.1 → 0.1.2

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: 98651e24ce9d909608d0476295e8df39f241d1845a4f2d06f5db7472d5baaa49
4
- data.tar.gz: 70bc25833730fc4d1ed3e8f85667689a86481b47cf29d298c5ec92d14a7825c6
3
+ metadata.gz: 557ff0093e1b6a6aab1ed931a3f2e29ed3c0e387763533f6214f864591fdcb86
4
+ data.tar.gz: 040f2868348d12591548e4cff3bf2c322c90e7a059070e0a268444f4294f636f
5
5
  SHA512:
6
- metadata.gz: 83ad1074638bbb4fbc5835b6ec18451248513ed667123330f28fbe7d407dd532580af16dc3b4c35654392330d693e4d531e111e9837e2510256c1338082e292c
7
- data.tar.gz: 11f327d227add4eca48f4e2b54a76f14789d796549aff089ca767ac8fee7e84d6ca20554f596aca94642174cb9540949db2375e4b3547d48287f0ef74ddcb7a3
6
+ metadata.gz: 34c651204d2186ff5b2bfa69698a91ea68ca5e11ea38d78046ff21fd81dab52919211b34ff3608a939bcf314c020c6ccfe86247dc5ca9bee042b08a4f3a36f79
7
+ data.tar.gz: 9ebc87d902206ce3fbcf91ba16485093bba50132cbc9729e4c0f29fc4634a94552c807030331bf9386c1d53e1b87b4cc5acd32311c010cd64858b6f1549ac742
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 0.1.2
4
+
5
+ * Relax Ruby version requirement to allow Ruby 3.0
6
+
3
7
  ### 0.1.1
4
8
 
5
9
  * Redux.combine_reducers
data/Gemfile CHANGED
@@ -1,5 +1,6 @@
1
- source 'https://rubygems.org'
1
+ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'minitest'
5
+ gem "minitest"
6
+ gem "rake"
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2016 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,6 +1,6 @@
1
- # redux.rb [![[version]](https://badge.fury.io/rb/redux.svg)](http://badge.fury.io/rb/redux) [![[travis]](https://travis-ci.org/janlelis/redux.rb.png)](https://travis-ci.org/janlelis/redux.rb)
1
+ # redux.rb [![[version]](https://badge.fury.io/rb/redux.svg)](https://badge.fury.io/rb/redux) [![[ci]](https://github.com/janlelis/redux.rb/workflows/Test/badge.svg)](https://github.com/janlelis/redux.rb/actions?query=workflow%3ATest)
2
2
 
3
- A [Redux](https://github.com/rackt/redux) implementation in Ruby.
3
+ A [Redux](https://github.com/reduxjs/redux) implementation in Ruby.
4
4
 
5
5
 
6
6
  ## Setup
@@ -34,4 +34,4 @@ store.state # => 1
34
34
 
35
35
  ## MIT License
36
36
 
37
- Copyright (C) 2016 Jan Lelis <http://janlelis.com>. Released under the MIT license.
37
+ Copyright (C) 2016 Jan Lelis <https://janlelis.com>. Released under the MIT license.
data/Rakefile CHANGED
@@ -28,3 +28,13 @@ desc "#{gemspec.name} | IRB"
28
28
  task :irb do
29
29
  sh "irb -I ./lib -r #{gemspec.name.gsub '-','/'}"
30
30
  end
31
+
32
+ # # #
33
+ # Run specs
34
+
35
+ desc "#{gemspec.name} | Spec"
36
+ task :spec do
37
+ sh "for file in spec/*_spec.rb; do ruby $file; done"
38
+ end
39
+ task default: :spec
40
+
@@ -1,4 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Redux
2
- VERSION = "0.1.1".freeze
4
+ VERSION = "0.1.2"
3
5
  end
4
-
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = "redux.rb"
9
9
  gem.description = "Tiny Redux implementation in Ruby."
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/redux.rb"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,5 +17,5 @@ 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", "< 4.0"
21
21
  end
metadata CHANGED
@@ -1,26 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.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: 2018-08-20 00:00:00.000000000 Z
11
+ date: 2021-01-07 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Tiny Redux implementation in Ruby.
14
14
  email:
15
- - mail@janlelis.de
15
+ - hi@ruby.consulting
16
16
  executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - ".gitignore"
21
- - ".travis.yml"
22
21
  - CHANGELOG.md
23
22
  - Gemfile
23
+ - Gemfile.lock
24
24
  - MIT-LICENSE.txt
25
25
  - README.md
26
26
  - Rakefile
@@ -39,17 +39,19 @@ require_paths:
39
39
  - lib
40
40
  required_ruby_version: !ruby/object:Gem::Requirement
41
41
  requirements:
42
- - - "~>"
42
+ - - ">="
43
43
  - !ruby/object:Gem::Version
44
44
  version: '2.0'
45
+ - - "<"
46
+ - !ruby/object:Gem::Version
47
+ version: '4.0'
45
48
  required_rubygems_version: !ruby/object:Gem::Requirement
46
49
  requirements:
47
50
  - - ">="
48
51
  - !ruby/object:Gem::Version
49
52
  version: '0'
50
53
  requirements: []
51
- rubyforge_project:
52
- rubygems_version: 2.7.6
54
+ rubygems_version: 3.2.4
53
55
  signing_key:
54
56
  specification_version: 4
55
57
  summary: redux.rb
@@ -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