culpa 1.3 → 1.3.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 +8 -8
- data/lib/culpa.rb +2 -2
- data/templates/culpa/Gemfile +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjcwNTkxMmRlMDIyNmI1YzZiZDU3ZjE0ZWE5MGY2MjgyYzkxMDZmMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTgyM2RmMTBlNzQ2Mjc5NjFiNWQ4NzQ0ZWIwNjRhMTAwM2JkMDU2MQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ODFkMTNhNTMzZDU0OWUzZWY1MTNmYjU0MmIyOWQzYjcwNzE0Mzc1YzdjZWEw
|
10
|
+
Y2Q2NjE0NDJkMjMwNzBhZTZiOTE0NjdlZDAwZjAxNmVjZDNjYWNiZTIyZTRh
|
11
|
+
NzU0MWU0ODRiMzEzNWJjOWU5NDkyYmNiMTkzYzUwZTlkMTBiMmU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YWNmYWFiMjZmZGI4MWE5YjYzZjQzODE3OTQ0MWVlMDYzZmQ3MzU3MmM5MDk4
|
14
|
+
YzZiZDk3OWViYWM4OTVkZTMwMjliMzcyY2RiYTVkOTZhMzM5ZDBkYWQ2NTEw
|
15
|
+
ZmY5Njg4YTRjMTU0OGFjNmVhZDQ5MGUzMjBmM2I3YTkzODhlOTc=
|
data/lib/culpa.rb
CHANGED
@@ -8,7 +8,7 @@ require_relative 'culpa/path_parser'
|
|
8
8
|
require_relative 'culpa/routes_builder'
|
9
9
|
require_relative 'culpa/brickchain_helpers'
|
10
10
|
|
11
|
-
CULPA_VERSION = '1.
|
11
|
+
CULPA_VERSION = '1.3.1'.freeze
|
12
12
|
|
13
13
|
ACTIONS_PATH ||= './actions/*.rb'.freeze
|
14
14
|
MODELS_PATH ||= './models/*.rb'.freeze
|
@@ -30,7 +30,7 @@ end
|
|
30
30
|
|
31
31
|
# The main module of the application
|
32
32
|
module Culpa
|
33
|
-
|
33
|
+
|
34
34
|
# Error called when a sub_call is not defined and it can't be inferred
|
35
35
|
class UnpredictableSubCallError < StandardError; end
|
36
36
|
# Error raised when a brickchain didn't called a render at all
|
data/templates/culpa/Gemfile
CHANGED