mutations_generator 0.3.1 → 0.3.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 +4 -4
- data/lib/mutations_generator/version.rb +1 -1
- data/mutations_generator.gemspec +5 -4
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7bf6616ecdd031ff8bbc80c0f072463510f3c47707e1519ebedfaeeb2bbcbb0
|
4
|
+
data.tar.gz: 58559af355921952666a4c3ff0755405156974a76f73576c85ad04987d5e22d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a690f7fa0c0321f687ece01b3791d362a9b92e41486aac81bc8e6283f504e60d307a4806d0d080b18d63927dc5190954ade0c460858b5943c3300c3205495f4
|
7
|
+
data.tar.gz: d04183c75c667461807a0d883ba93373d8fee6ef923ab5697f515dfb0d9ec3c576b7569524ba1414a14cac1d18b61ccb41c76f9183b40bd9e7ef8dcb49519517
|
data/mutations_generator.gemspec
CHANGED
@@ -5,17 +5,17 @@ require_relative 'lib/mutations_generator/version'
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'mutations_generator'
|
7
7
|
spec.version = MutationsGenerator::VERSION
|
8
|
-
spec.authors = ['
|
9
|
-
spec.email = ['
|
8
|
+
spec.authors = ['aquaflamingo']
|
9
|
+
spec.email = ['16901597+aquaflamingo@users.noreply.github.com']
|
10
10
|
|
11
11
|
spec.summary = 'Extension for Ruby on Rails to add Mutation generators'
|
12
12
|
spec.description = 'Mutations are an elegant implementation of the Command and ServiceObject pattern in Ruby on Rails projects. This gem extends Rails generators to include a mutation generator.'
|
13
|
-
spec.homepage = 'https://github.com/
|
13
|
+
spec.homepage = 'https://github.com/aquaflaming/mutations_generator'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
16
16
|
|
17
17
|
spec.metadata['homepage_uri'] = spec.homepage
|
18
|
-
spec.metadata['source_code_uri'] = 'https://github.com/
|
18
|
+
spec.metadata['source_code_uri'] = 'https://github.com/aquaflamingo/mutations_generator'
|
19
19
|
spec.metadata['changelog_uri'] = spec.metadata['source_code_uri'] + '/releases'
|
20
20
|
|
21
21
|
# Specify which files should be added to the gem when it is released.
|
@@ -26,6 +26,7 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.bindir = 'exe'
|
27
27
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
28
|
spec.require_paths = ['lib']
|
29
|
+
|
29
30
|
spec.add_development_dependency 'mutations', '~> 0.9.1'
|
30
31
|
spec.add_development_dependency 'rails', '~>6.0.3.1'
|
31
32
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mutations_generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- aquaflamingo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mutations
|
@@ -42,7 +42,7 @@ description: Mutations are an elegant implementation of the Command and ServiceO
|
|
42
42
|
pattern in Ruby on Rails projects. This gem extends Rails generators to include
|
43
43
|
a mutation generator.
|
44
44
|
email:
|
45
|
-
-
|
45
|
+
- 16901597+aquaflamingo@users.noreply.github.com
|
46
46
|
executables: []
|
47
47
|
extensions: []
|
48
48
|
extra_rdoc_files: []
|
@@ -62,13 +62,13 @@ files:
|
|
62
62
|
- lib/mutations_generator.rb
|
63
63
|
- lib/mutations_generator/version.rb
|
64
64
|
- mutations_generator.gemspec
|
65
|
-
homepage: https://github.com/
|
65
|
+
homepage: https://github.com/aquaflaming/mutations_generator
|
66
66
|
licenses:
|
67
67
|
- MIT
|
68
68
|
metadata:
|
69
|
-
homepage_uri: https://github.com/
|
70
|
-
source_code_uri: https://github.com/
|
71
|
-
changelog_uri: https://github.com/
|
69
|
+
homepage_uri: https://github.com/aquaflaming/mutations_generator
|
70
|
+
source_code_uri: https://github.com/aquaflamingo/mutations_generator
|
71
|
+
changelog_uri: https://github.com/aquaflamingo/mutations_generator/releases
|
72
72
|
post_install_message:
|
73
73
|
rdoc_options: []
|
74
74
|
require_paths:
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.
|
87
|
+
rubygems_version: 3.3.7
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: Extension for Ruby on Rails to add Mutation generators
|