modware 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/prs.yml +3 -3
- data/README.md +8 -7
- data/lib/modware/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9fb743eb8ec676231419fb6e8addfe5331f8adc2d713bb72a0a8fa1b6950887
|
4
|
+
data.tar.gz: ee6d9c3099b824786e083509e374946cd6ba7059bc372cceda4fced5e7910d6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bd2e5d44cfa4012641cea6cadf57b4bf62470925fead308a496226c57296df04060d92ec2777753ebe055b5f4a719a791318154ddad32ea8319e367d367b92b
|
7
|
+
data.tar.gz: 630b677acdc0c66fc2fd2f9d35c313c49d071aa5ba12feb7eabd14723b0c7c8b9762e477076c889d57b9bca5100fc54015cf71e4e941d24feb6f97d5a9930349
|
data/.github/workflows/prs.yml
CHANGED
@@ -16,14 +16,14 @@ jobs:
|
|
16
16
|
strategy:
|
17
17
|
fail-fast: false
|
18
18
|
matrix:
|
19
|
-
ruby
|
19
|
+
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1']
|
20
20
|
steps:
|
21
21
|
- uses: actions/checkout@v2
|
22
22
|
|
23
23
|
- name: Set up Ruby
|
24
24
|
uses: ruby/setup-ruby@v1
|
25
25
|
with:
|
26
|
-
ruby-version: ${{ matrix.ruby
|
26
|
+
ruby-version: ${{ matrix.ruby }}
|
27
27
|
bundler-cache: true
|
28
28
|
|
29
29
|
- name: 'Run bundle update'
|
@@ -36,7 +36,7 @@ jobs:
|
|
36
36
|
uses: coverallsapp/github-action@master
|
37
37
|
with:
|
38
38
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
39
|
-
flag-name: run-${{ matrix.ruby
|
39
|
+
flag-name: run-${{ matrix.ruby }}
|
40
40
|
parallel: true
|
41
41
|
finish:
|
42
42
|
needs: 'test'
|
data/README.md
CHANGED
@@ -131,13 +131,14 @@ The [middleware](https://rubygems.org/gems/middleware) gem works well, following
|
|
131
131
|
|
132
132
|
## Change Log
|
133
133
|
|
134
|
-
* 1.0.
|
135
|
-
* 1.0.
|
136
|
-
* 0.
|
137
|
-
* 0.
|
138
|
-
* 0.1.
|
139
|
-
* 0.1.
|
140
|
-
* 0.1.
|
134
|
+
* **1.0.2** - Add Ruby 3.1 support
|
135
|
+
* **1.0.1** - Fix KeyStruct replacement
|
136
|
+
* **1.0.0** - use a major bump due to breakage with the 0.2.0 version and existing gems
|
137
|
+
* **0.2.0** - Add ruby 3.0 support and drop ruby < 2.5 (yanked)
|
138
|
+
* **0.1.3** - Remove its-it dependency :( #2
|
139
|
+
* **0.1.2** - More thread safety in Stack#start
|
140
|
+
* **0.1.1** - Thread safety in Stack#start
|
141
|
+
* **0.1.0** - Initial release
|
141
142
|
|
142
143
|
## Contributing
|
143
144
|
|
data/lib/modware/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: modware
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ronen barzel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|