modularity 3.0.0 → 3.0.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: 429e10c8fecef4d2111b5ca35805fe7d034869422e3ab1c098378e6f970f8caa
4
- data.tar.gz: e0cecc3bda150b73fb39b7fff2eef48d328dba303bb8842b5aa28be09287f26f
3
+ metadata.gz: f12124ad13bb239a891eb310290f11b78ec59afe6c8b06a5e93a31de25419a62
4
+ data.tar.gz: 9b742d62111676d20497e9c847f8a31eca318b292768385b85236f4815eb4f46
5
5
  SHA512:
6
- metadata.gz: 4526b4df0b655e0eb5de00b82a65f8081bd51390bbb71e2ac3ff38c670b8b541e9b24df7935d563e51d7f07d8a6a3fc8af83c0e803321d5fef47238cd640f080
7
- data.tar.gz: bd2ba2ab6fe3ba0150d07c43022d8eccd9f7bf17f669d1d4c6f6df129b5bdc42e22d9212c56886dff34c5f2d41217360fcbd3fb91ebd02e9984162b8d2aa93c7
6
+ metadata.gz: ec89142e9de11baa4f818bd89f33c102cad9695ca03d9b53e4db5519dc0f8dd2a46ac1ed48383a8576e6039948a7a202ef6602aa0ffea5ea4c71c7b8fb3bc171
7
+ data.tar.gz: 9888756a4e7f8a964127211a4d1237aa9abea0983ffadac3d1a45862d9d7e1e349a13178d447dbef22c4edd0cd0f84bb60dda9ebe5f089dd0ed6c30f99dd12a4
data/CHANGELOG.md CHANGED
@@ -10,6 +10,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
10
10
  ### Compatible changes
11
11
 
12
12
 
13
+ ## 3.0.1 - 2022-03-09
14
+
15
+ ### Compatible changes
16
+
17
+ - Activate Rubygems MFA
18
+
19
+
13
20
  ## 3.0.0 - 2021-08-24
14
21
 
15
22
  ### Breaking changes
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- modularity (3.0.0)
4
+ modularity (3.0.1)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -44,4 +44,4 @@ DEPENDENCIES
44
44
  rspec
45
45
 
46
46
  BUNDLED WITH
47
- 2.2.26
47
+ 2.2.32
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [![Tests](https://github.com/makandra/modularity/workflows/Tests/badge.svg)](https://github.com/makandra/modularity/actions)
2
2
 
3
- # Modularity 2 - Traits and partial classes for Ruby
3
+ # Modularity - Traits and partial classes for Ruby
4
4
 
5
5
  Modularity enhances Ruby's [`Module`](http://apidock.com/ruby/Module) so it can be used traits and partial classes.
6
6
  This allows very simple definition of meta-programming macros like the
@@ -1,3 +1,3 @@
1
1
  module Modularity
2
- VERSION = '3.0.0'
2
+ VERSION = '3.0.1'
3
3
  end
data/modularity.gemspec CHANGED
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.description = 'Traits and partial classes for Ruby'
14
14
  spec.homepage = 'https://github.com/makandra/modularity'
15
15
  spec.license = 'MIT'
16
+ spec.metadata = { 'rubygems_mfa_required' => 'true' }
16
17
 
17
18
  # Specify which files should be added to the gem when it is released.
18
19
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: modularity
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-24 00:00:00.000000000 Z
11
+ date: 2022-03-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Traits and partial classes for Ruby
14
14
  email:
@@ -35,7 +35,8 @@ files:
35
35
  homepage: https://github.com/makandra/modularity
36
36
  licenses:
37
37
  - MIT
38
- metadata: {}
38
+ metadata:
39
+ rubygems_mfa_required: 'true'
39
40
  post_install_message:
40
41
  rdoc_options: []
41
42
  require_paths:
@@ -51,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
52
  - !ruby/object:Gem::Version
52
53
  version: '0'
53
54
  requirements: []
54
- rubygems_version: 3.2.26
55
+ rubygems_version: 3.2.32
55
56
  signing_key:
56
57
  specification_version: 4
57
58
  summary: Traits and partial classes for Ruby