active_uxid 5.0.0 → 5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34d7a69e3d966c9d194cbe8a6efc2281ca267e6a
4
- data.tar.gz: b424f609d87c31db6d7671b13a8b7d2aabbfcd77
3
+ metadata.gz: 67a19efe8695bb9f424821530f2f57347bc95b23
4
+ data.tar.gz: bac7a5f7775e4b09247bf7ac5ee85a53609ea452
5
5
  SHA512:
6
- metadata.gz: 91c67aed76426ca5f0356db10f94fc2871d54fd870362d491396b8b719d262bc636166fb308d7f7bf6e26431aa4fa1531efbed185eb474609c22210794855fb8
7
- data.tar.gz: 4f87ed7801de2c5583409f6c6b9549c3f17a0cfbc3ead9b3a758950fd6ef43412fac2ad1edb41044fc8ce56e553bfc9eadc69a5b7db2bdd9fd9e18dc9991d272
6
+ metadata.gz: 6ea7ff817c90897474b91d8899e0a3c642f93413903d2973a95939d99c1732094c3fe1feb61fa28c76c2e6873bb9b60d95d589c6a6af3c4fc8889f37a9644f49
7
+ data.tar.gz: 1802c40c533c51977cdbece215c2cd44eb4dd04a31c95397826c8480551027dc62feceaada52495a8b2e4ea5b9a381d1ca782ca5af390731985e95164dd39d7f
data/.reek CHANGED
@@ -1,26 +1,12 @@
1
1
  ---
2
2
  Attribute:
3
3
  enabled: false
4
- BooleanParameter:
5
- enabled: false
6
- ControlParameter:
7
- enabled: false
8
4
  FeatureEnvy:
9
5
  enabled: false
10
6
  IrresponsibleModule:
11
7
  enabled: false
12
- LongParameterList:
13
- enabled: false
14
8
  ManualDispatch:
15
9
  enabled: false
16
- NestedIterators:
17
- max_allowed_nesting: 2
18
- NilCheck:
19
- enabled: false
20
- PrimaDonnaMethod:
21
- enabled: false
22
- RepeatedConditional:
23
- enabled: false
24
10
  TooManyStatements:
25
11
  max_statements: 10
26
12
  UtilityFunction:
data/.rubocop.yml CHANGED
@@ -4,37 +4,15 @@ AllCops:
4
4
  TargetRubyVersion: 2.4
5
5
  Exclude:
6
6
  - 'spec/**/**/*'
7
- Layout/ClosingParenthesisIndentation:
8
- Enabled: false
9
- Layout/EmptyLinesAroundBlockBody:
10
- Enabled: false
11
7
  Layout/EmptyLinesAroundClassBody:
12
8
  Enabled: false
13
9
  Layout/EmptyLinesAroundModuleBody:
14
10
  Enabled: false
15
- Layout/FirstParameterIndentation:
16
- Enabled: false
17
- Layout/MultilineMethodCallIndentation:
18
- EnforcedStyle: aligned
19
11
  LineLength:
20
12
  Max: 100
21
13
  Lint/ScriptPermission:
22
14
  Enabled: false
23
- Metrics/ClassLength:
24
- Enabled: false
25
- Metrics/ModuleLength:
26
- Enabled: false
27
- Style/Alias:
28
- EnforcedStyle: prefer_alias_method
29
- Style/BracesAroundHashParameters:
30
- Enabled: false
31
15
  Style/ClassAndModuleChildren:
32
16
  Enabled: false
33
17
  Style/Documentation:
34
18
  Enabled: false
35
- Style/HashSyntax:
36
- Enabled: false
37
- Style/NumericLiterals:
38
- Enabled: false
39
- Style/RescueModifier:
40
- Enabled: false
data/README.md CHANGED
@@ -37,7 +37,7 @@ Or install it yourself as:
37
37
  ActiveUxid.configure do |config|
38
38
  config.encoding_chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
39
39
  config.encoding_length = 26
40
- config.encoding_salt = 1369136
40
+ config.encoding_salt = 1_369_136
41
41
  end
42
42
  ```
43
43
 
@@ -8,7 +8,7 @@ module ActiveUxid
8
8
  def initialize
9
9
  @encoding_chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
10
10
  @encoding_length = 26
11
- @encoding_salt = 1369136
11
+ @encoding_salt = 1_369_136
12
12
  end
13
13
 
14
14
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveRegulation
4
- VERSION ||= '5.0.0'
4
+ VERSION ||= '5.0.1'
5
5
  end
@@ -3,5 +3,5 @@
3
3
  ActiveUxid.configure do |config|
4
4
  config.encoding_chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
5
5
  config.encoding_length = 26
6
- config.encoding_salt = 1369136
6
+ config.encoding_salt = 1_369_136
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_uxid
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez