hmvc-rails 1.0.0 → 1.0.1
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/Gemfile.lock +1 -1
- data/README.md +1 -3
- data/hmvc-rails-1.0.0.gem +0 -0
- data/lib/hmvc/rails/version.rb +1 -1
- data/lib/rubocop/cop/hmvc_rails/operating_style.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f83b0fe836cc23a55c3cc64b7c7501fc95ab64038dd9045c7234282cbd689b0
|
4
|
+
data.tar.gz: fe91f5e61f4f9a90a338dd63bad014493e1d64e16a7b3cfba28b82af25010be8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d910ee0f1bb4e00b6cf72a38698b1ae3d53f3975e22b6b76df64ab3a968f3bbce62f50d05061f7459c6e0cd48de3f4194722a1542a97188213d29ac54fe05724
|
7
|
+
data.tar.gz: a132f4be97ee132e94890f9602b9fe57c3dde7f25b99691fba50a7a431bb335f6cc6394af288596ac651a7f28b9b7b8fd8f640a7c3069786b6ec25fc589b4ff7
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
Binary file
|
data/lib/hmvc/rails/version.rb
CHANGED
@@ -15,7 +15,7 @@ module RuboCop
|
|
15
15
|
return unless node.children.first == :call
|
16
16
|
|
17
17
|
node.body.to_a.compact.each do |ast|
|
18
|
-
next if ast.is_a?(Symbol) && (ast.to_s.start_with?("step_") ||
|
18
|
+
next if ast.is_a?(Symbol) && (ast.to_s.start_with?("step_") || ast.to_s == "super")
|
19
19
|
|
20
20
|
next if ast.is_a?(RuboCop::AST::SendNode) &&
|
21
21
|
(ast.children.last.to_s.start_with?("step_") || ast.children.last.to_s == "super")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hmvc-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- thucpt
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: hmvc-rails is a high-level model for the Rails MVC architecture
|
14
14
|
email:
|
@@ -25,6 +25,7 @@ files:
|
|
25
25
|
- LICENSE.txt
|
26
26
|
- README.md
|
27
27
|
- Rakefile
|
28
|
+
- hmvc-rails-1.0.0.gem
|
28
29
|
- lib/generators/hmvc_rails/hmvc_rails_generator.rb
|
29
30
|
- lib/generators/hmvc_rails/install_generator.rb
|
30
31
|
- lib/generators/hmvc_rails/templates/configures/hmvc_rails.rb.tt
|
@@ -67,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
68
|
- !ruby/object:Gem::Version
|
68
69
|
version: '0'
|
69
70
|
requirements: []
|
70
|
-
rubygems_version: 3.
|
71
|
+
rubygems_version: 3.4.13
|
71
72
|
signing_key:
|
72
73
|
specification_version: 4
|
73
74
|
summary: hmvc-rails is a high-level model for the Rails MVC architecture
|