active_regulation 4.0.2 → 4.0.3
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/.rubocop.yml +15 -13
- data/active_regulation.gemspec +2 -1
- data/lib/active_regulation/version.rb +1 -1
- data/lib/active_regulation.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09539c95b2458fd671fb9425f38acd51e580fd19'
|
|
4
|
+
data.tar.gz: 7239bbf9068805702d9ea80fadfdad630a4be061
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8af7bedcf9c979eb40c1c09368c086089dbd2f954b6c609ddca006ab1850272530618e069aea6debb3453274f0cd8ace9217aa7ef8dec3f644d1985cf411a61
|
|
7
|
+
data.tar.gz: 1dd3f4d0d144280772a578ea1bde1d5cb5ebb0de1a283eb4c68345210ec3fb751e170761930d3e033d62881e693c9f697a49d5f87b7cbf80343c6f4f436332f4
|
data/.rubocop.yml
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
AllCops:
|
|
2
2
|
DisplayCopNames: true
|
|
3
3
|
DisplayStyleGuide: true
|
|
4
|
-
TargetRubyVersion: 2.
|
|
4
|
+
TargetRubyVersion: 2.4
|
|
5
5
|
Exclude:
|
|
6
6
|
- 'spec/**/**/*'
|
|
7
|
+
Layout/ClosingParenthesisIndentation:
|
|
8
|
+
Enabled: false
|
|
9
|
+
Layout/EmptyLinesAroundBlockBody:
|
|
10
|
+
Enabled: false
|
|
11
|
+
Layout/EmptyLinesAroundClassBody:
|
|
12
|
+
Enabled: false
|
|
13
|
+
Layout/EmptyLinesAroundModuleBody:
|
|
14
|
+
Enabled: false
|
|
15
|
+
Layout/FirstParameterIndentation:
|
|
16
|
+
Enabled: false
|
|
17
|
+
Layout/MultilineMethodCallIndentation:
|
|
18
|
+
EnforcedStyle: aligned
|
|
7
19
|
LineLength:
|
|
8
20
|
Max: 100
|
|
21
|
+
Lint/ScriptPermission:
|
|
22
|
+
Enabled: false
|
|
9
23
|
Metrics/ClassLength:
|
|
10
24
|
Enabled: false
|
|
11
25
|
Metrics/ModuleLength:
|
|
@@ -14,24 +28,12 @@ Style/Alias:
|
|
|
14
28
|
EnforcedStyle: prefer_alias_method
|
|
15
29
|
Style/BracesAroundHashParameters:
|
|
16
30
|
Enabled: false
|
|
17
|
-
Style/ClosingParenthesisIndentation:
|
|
18
|
-
Enabled: false
|
|
19
31
|
Style/Documentation:
|
|
20
32
|
Enabled: false
|
|
21
|
-
Style/EmptyLinesAroundBlockBody:
|
|
22
|
-
Enabled: false
|
|
23
|
-
Style/EmptyLinesAroundClassBody:
|
|
24
|
-
Enabled: false
|
|
25
|
-
Style/EmptyLinesAroundModuleBody:
|
|
26
|
-
Enabled: false
|
|
27
33
|
Style/HashSyntax:
|
|
28
34
|
Enabled: false
|
|
29
|
-
Style/FirstParameterIndentation:
|
|
30
|
-
Enabled: false
|
|
31
35
|
Style/FrozenStringLiteralComment:
|
|
32
36
|
Enabled: false
|
|
33
|
-
Style/MultilineMethodCallIndentation:
|
|
34
|
-
EnforcedStyle: aligned
|
|
35
37
|
Style/NumericLiterals:
|
|
36
38
|
Enabled: false
|
|
37
39
|
Style/RescueModifier:
|
data/active_regulation.gemspec
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
|
+
|
|
2
3
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
5
|
require 'active_regulation/version'
|
|
@@ -17,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
17
18
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
19
|
spec.bindir = 'exe'
|
|
19
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
|
-
spec.require_paths = %w
|
|
21
|
+
spec.require_paths = %w[lib support]
|
|
21
22
|
|
|
22
23
|
spec.add_runtime_dependency 'activerecord'
|
|
23
24
|
spec.add_runtime_dependency 'activesupport'
|
data/lib/active_regulation.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_regulation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Gomez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -217,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
217
|
version: '0'
|
|
218
218
|
requirements: []
|
|
219
219
|
rubyforge_project:
|
|
220
|
-
rubygems_version: 2.6.
|
|
220
|
+
rubygems_version: 2.6.12
|
|
221
221
|
signing_key:
|
|
222
222
|
specification_version: 4
|
|
223
223
|
summary: Gem for commonly used record states.
|