nerd_dice 0.5.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5edc034febc13a688b57e15a6254ee4523144a9619f95ade4af6284b59df578
4
- data.tar.gz: c60102fe7b1cc8b4e09c290b2bdbb9c6602b8b6311fca595e930397f10db3ed0
3
+ metadata.gz: 9161b4d750e3e0cff2dccc3e24bdf53a7ec85a5f2a0f475de75e852a0e99bd4e
4
+ data.tar.gz: e0d9c8e5dafeef3270aba3799b122a8e99aef8519327de323f76c1b9d7d6b1f1
5
5
  SHA512:
6
- metadata.gz: 7097d5f6df166b480954546c6e8d8dd1b771bb67fe515093cb60a4d29aee4f3f6e244fa0eec3f099bbfb1bc2291fe9da91acda973080887cd94d98738d7ec240
7
- data.tar.gz: 3fa7a50fe3b4217bf11e4335f9ecdce9118c432f3a5a542e36a2a9963ccd9defc602885478c782596fffe4c1a6e9a540dfdd9eb024ced1a839f44b2fbceaba1e
6
+ metadata.gz: 259490a77e685fdd44ae195821357f90b91a134e62e41c087ad52854c379785d25e2077dd1478d0e329636bd21be72e5c8feeca04153b7f3c7c641f0aeee60d7
7
+ data.tar.gz: 12eefd6cff897d010c61902b30ffa3573c49fec130af666d371faaebe89219fe30929d12d049ef3e02e821edc304db18aefcf5c56ca2c6ce8e13939e8572bade
checksums.yaml.gz.sig CHANGED
Binary file
@@ -14,10 +14,10 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  strategy:
16
16
  matrix:
17
- ruby-version: ['3.0', '3.1', '3.2']
17
+ ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v2
20
+ - uses: actions/checkout@v4
21
21
  - name: Set up Ruby
22
22
  uses: ruby/setup-ruby@v1
23
23
  with:
@@ -35,7 +35,7 @@ jobs:
35
35
  rubocop:
36
36
  runs-on: ubuntu-latest
37
37
  steps:
38
- - uses: actions/checkout@v2
38
+ - uses: actions/checkout@v4
39
39
  - name: Set up Ruby
40
40
  uses: ruby/setup-ruby@v1
41
41
  with:
@@ -47,7 +47,7 @@ jobs:
47
47
  benchmark:
48
48
  runs-on: ubuntu-latest
49
49
  steps:
50
- - uses: actions/checkout@v2
50
+ - uses: actions/checkout@v4
51
51
  - name: Set up Ruby
52
52
  uses: ruby/setup-ruby@v1
53
53
  with:
data/.gitignore CHANGED
@@ -9,3 +9,6 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ # ignore Gemfile.lock for version control
14
+ Gemfile.lock
data/.rubocop.yml CHANGED
@@ -6,7 +6,7 @@
6
6
  # will be enabled by default, and a case-by-case descision can be made whether
7
7
  # to exclude new violations in the configuration explicitly or update the
8
8
  # codebase to the gem to conform to the new standard.
9
- require:
9
+ plugins:
10
10
  - rubocop-performance
11
11
  - rubocop-rake
12
12
  - rubocop-rspec
@@ -166,6 +166,9 @@ Metrics/BlockLength:
166
166
  - 'spec/**/*.rb'
167
167
  - 'nerd_dice.gemspec'
168
168
 
169
+ Gemspec/DevelopmentDependencies:
170
+ EnforcedStyle: gemspec
171
+
169
172
  Lint/ErbNewArguments:
170
173
  Enabled: true
171
174
 
data/CHANGELOG.md CHANGED
@@ -1,140 +1,8 @@
1
1
  # Nerd Dice Changelog
2
2
 
3
- ## master \(unreleased\)
4
- ### Added
5
- ### Changed
6
- ### Fixed
3
+ <img src="https://i.kym-cdn.com/photos/images/newsfeed/000/186/610/thankyou.png?1318726198" alt="Our CHANGELOG is in another castle" />
7
4
 
8
- ## 0.5.0 \(2023-02-23\)
9
- ### Added
10
- * Add Ruby 3.1 and 3.2 to GitHub actions
11
- * Add security policy to gem
12
- * Add contributing guidelines to project
13
- ### Changed
14
- * Remove Ruby 2.7 from GitHub actions
15
- * Change minimum Ruby version to 3.0
16
- * Refactor RuboCop to enable new cops by default and delete redundant config
17
- * Update bundle for dependencies and development dependencies
18
- ### Fixed
19
- * Remove hardcoded link from README
20
- * Fix cognitive complexity code smell in convenience_methods
21
- * Update expired gem signing certificate
5
+ ## Legacy Branch: See master
6
+ This is a legacy maintenance branch.
22
7
 
23
- ## 0.4.1 \(2023-02-23\)
24
- ### Added
25
- * Add Ruby 3.1 and 3.2 to GitHub actions
26
- ### Changed
27
- * Remove Ruby 2.7 from GitHub actions
28
- * Refactor RuboCop to enable new cops by default and delete redundant config
29
- * Update bundle for dependencies and development dependencies
30
- ### Fixed
31
- * Remove hardcoded link from README
32
- * Fix cognitive complexity code smell in convenience_methods
33
- * Update expired gem signing certificate
34
-
35
- ## 0.4.0 \(2021-10-23\)
36
- ### Added
37
- * Add `NerdDice::ConvenienceMethods` method_missing mixin module that allows for dynamic invocation of patterns in the method name that get converted into calls to `NerdDice.roll_dice` or `NerdDice.total_dice` along with allowing the advantage/disadvantage mechanic or bonuses to be parsed from the method name. Full documentation of the module can be found in the [Convenience Methods Mixin](README.md#convenience-methods-mixin) section of the README.
38
- * Add exensive specs to support the ConvenienceMethods module
39
- ### Changed
40
- * Replace `Benchmark.bmbm` with `Benchmark.bm` in the nerd_dice_benchmark
41
- * Add convenience_methods to nerd_dice_benchmark
42
- * Extend `NerdDice::ConvenienceMethods` into top-level module as class methods
43
- ### Fixed
44
- * Fix typos and horizontal scrolling in README
45
- * Fix CodeClimate Code Smell on harvest_totals
46
-
47
- ## 0.3.1 \(2023-02-23\)
48
- ### Added
49
- * Add Ruby 3.1 and 3.2 to GitHub actions
50
- ### Changed
51
- * Remove Ruby 2.7 from GitHub actions
52
- * Refactor RuboCop to enable new cops by default and delete redundant config
53
- * Update bundle for dependencies and development dependencies
54
- ### Fixed
55
- * Remove hardcoded link from README
56
- * Update expired gem signing certificate
57
-
58
- ## 0.3.0 \(2021-09-11\)
59
- ### Added
60
- * Add new options to `NerdDice::Configuration`
61
- - `ability_score_number_of_sides`
62
- - `ability_score_dice_rolled`
63
- - `ability_score_dice_kept`
64
- * Add `NerdDice.harvest_totals` method that takes in a collection and returns the results of calling `total` on each element
65
- * Add `NerdDice.roll_ability_scores` convenience method that returns an array of `DiceSet` objects based on options and/or configuration
66
- * Add `NerdDice.total_ability_scores` convenience method that returns an array of integers based on options and/or configuration
67
- * Add `NerdDice::Die` class that represents a single die object and mixes in the `Comparable` module
68
- * Add `NerdDice::DiceSet` class that represents a collection of `Die` objects and mixes in the `Enumerable` module
69
- * Add `NerdDice::SetsRandomizationTechnique` mixin module and include in the `DiceSet` and `Die` classes
70
- * Add `die_background_color` and `die_foreground_color` to `Configuration` class with defaults defined as constants
71
- * Add `NerdDice.roll_dice` method that behaves in a similar fashion to `total_dice` but returns a `DiceSet` object instead of an `Integer` and has additional optional arguments relating to the non-numeric attributes of the dice
72
- * Add `coveralls_reborn` to RSpec and GitHub actions
73
- * Add build badge to README
74
- * Add Code Climate maintainability integration and badge to README
75
- * Add `nerd_dice_benchmark` script to bin directory
76
- * Add GitHub Action CI build
77
- - Run RSpec test suite, fail if specs fail, report coverage via Coveralls
78
- - Run RuboCop and fail if violations
79
- - Run benchmark suite and fail if outside of allowed ratios
80
- ### Changed
81
- * Update RuboCop version and configuration
82
- * Break up the NerdDice source code file into several smaller files that are included by the module
83
- * Enforce that `NerdDice.configuration.ability_score_array_size` must be a positive duck-type integer
84
- ### Fixed
85
-
86
- ## 0.2.1 \(2023-02-23\)
87
- ### Added
88
- * Add Ruby 3.1 and 3.2 to GitHub actions
89
- ### Changed
90
- * Remove Ruby 2.7 from GitHub actions
91
- * Refactor RuboCop to enable new cops by default and delete redundant config
92
- * Update bundle for dependencies and development dependencies
93
- ### Fixed
94
- * Remove hardcoded link from README
95
- * Update expired gem signing certificate
96
-
97
- ## 0.2.0 \(2021-01-28\)
98
- ### Added
99
- * Add ability to configure with `NerdDice.configure` block or `NerdDice.configuration`
100
- - Configure `randomization_technique` as `:random_rand`, `:securerandom`, `:random_object`, or `randomized`
101
- - Configure `refresh_seed_interval` to allow a periodic refresh of the seed
102
- * Add `randomization_technique` option to `NerdDice.total_dice` method keyword arguments
103
- * Add a lower-level `execute_die_roll` method that allows you to roll a single die with a generator specified
104
- * Add ability to manually refresh or specify seed with `:refresh_seed!` method
105
- ### Changed
106
- * Change `opts = {}` final argument to use keyword args `**opts` in the `NerdDice.total_dice` method. Now the method can be called as follows:
107
- ```ruby
108
- # old
109
- NerdDice.total_dice(20, 1, {bonus: 5})
110
- NerdDice.total_dice(6, 3, {bonus: 1})
111
-
112
- # new
113
- NerdDice.total_dice(20, bonus: 5)
114
- NerdDice.total_dice(6, 3, bonus: 1)
115
- ```
116
- * Call `:to_i` on bonus instead of using `:is_a?` and raise ArgumentError in the `NerdDice.total_dice` method if it doesn't respond to `:to_i`
117
- * Added `securerandom` as an explicit dependency due to Ruby 3.x change to bundled gem
118
- * `total_dice` no longer calls unqualified `.rand` which improves performance on all generators except for `:securerandom`
119
- ### Fixed
120
-
121
- ## 0.1.2 \(2023-02-23\)
122
- ### Added
123
- ### Changed
124
- * Refactor RuboCop to enable new cops by default and delete redundant config
125
- * Update bundle for dependencies and development dependencies
126
- ### Fixed
127
- * Remove hardcoded link from README
128
- * Update expired gem signing certificate
129
-
130
- ## 0.1.1 \(2020-12-12\)
131
- ### Added
132
- ### Changed
133
- ### Fixed
134
- * Fix broken link to CHANGELOG in gemspec
135
- * Fix RuboCop offenses from 0.1.0 and refactor specs
136
-
137
- ## 0.1.0 \(2020-12-07\)
138
-
139
- ### Added
140
- * Add NerdDice.total_dice class method with the ability to roll multiple polyhedral dice and add a bonus
8
+ The [authoritative version of the CHANGELOG](https://github.com/statelesscode/nerd_dice/blob/master/CHANGELOG.md) is found on the master branch. All other release and maintenance branches are updated to point to master after being created.
data/Gemfile CHANGED
@@ -5,5 +5,5 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in nerd_dice.gemspec
6
6
  gemspec
7
7
 
8
- gem "rake", "~> 13.0"
9
- gem "rspec", "~> 3.12"
8
+ gem "rake", "~> 13.2", ">= 13.2.1"
9
+ gem "rspec", "~> 3.13"
@@ -1,27 +1,27 @@
1
1
  -----BEGIN CERTIFICATE-----
2
2
  MIIEhTCCAu2gAwIBAgIBATANBgkqhkiG9w0BAQsFADBEMRYwFAYDVQQDDA1zdGF0
3
3
  ZWxlc3Njb2RlMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZ
4
- FgNjb20wHhcNMjMwMjIzMjMyMTQwWhcNMjQwMjIzMjMyMTQwWjBEMRYwFAYDVQQD
4
+ FgNjb20wHhcNMjUwMzA5MDIzOTE4WhcNMjYwMzA5MDIzOTE4WjBEMRYwFAYDVQQD
5
5
  DA1zdGF0ZWxlc3Njb2RlMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJ
6
- k/IsZAEZFgNjb20wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCxVzHS
7
- gYszan//tjTSO0z59UO1rUiT5G0//iyhiaYIiuwxhYFbfD+wOCou4M18pQtEb4qx
8
- o67tPfGimBAVak6fGfo8fo1ByHiKCvx3jgOjxNifT9pRFlBSr6ZvyXeu7zA0ddLr
9
- slw92DNqeRlZXqB0mxDtpKWONGc1XhAqEjEP3VL7g7x0xPQShcpXg/OyRPR5vyv8
10
- 66pXdFrXYZGrySfIB6ZOWFV6wGBj603rPdXOeYVeks6hKvw3wb4G1s7tvwTA5MWI
11
- otw6Mp9TaMdms9zTc5A3N58pueKfBJfwkICkdAGJDWC6sIXECoaTDRqVK96RSH/1
12
- 8tEPDoFYpJDOa5byX1j7srwO0B6WOtPxix7gW1wBbEp7eWSQf1k3k9XEh32SRsPq
13
- NJObRfhkzoa9p1tPkVP3nasDTK5gtisolwhb7Vimeup54yKfT/THv2iNEnGTvK1P
14
- sV4vC8nch88lBI1mIecmSh/mwED4Mb1dNtcyuB/+XnSI8vIzXJKAAKaT0eMCAwEA
15
- AaOBgTB/MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRP42hSa0JV
16
- QGDSobiGTYyfM570hjAiBgNVHREEGzAZgRdzdGF0ZWxlc3Njb2RlQGdtYWlsLmNv
6
+ k/IsZAEZFgNjb20wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC5DKNh
7
+ CkmctleyxdOAiDNRZ9clnavZJvsa6wOzhK37fOc0z6T1E/orTJiAz/JtORrtqSEF
8
+ lFWOKW1/rvpNx43jNLBqoRO9mbxhnMUK2zloCcKqGaOP4Oo1Rk88X+eaeT0/pU91
9
+ Z7BJZ26DhIqx1IAq4oVbDsPuLx7y8U9KDGrVJns0eKZSTqpU2IgvTbOWLArT2DCG
10
+ oFMky71x1BTIc0T4rm0sSDwrM+JQbdd1btJzA78cJNxTBGdjXoIVNil2XVL2YWx3
11
+ 6X1CZyn8LAt6yeseGltUq+goDMFuosMfMNEcwsYCwzs64fi1wIeLH3dQBbmM8ZxQ
12
+ BPVqaRxXfU+EaEYkokyO4Z4ziolvd3GHB0pd/fy1FXsLHaCx+DKSUm8XnslwJk2q
13
+ aN5ELvTvPhlenB/m3yKQaNkpQoTspLGQEyJgMDvhhq9FNLXWAXQa9i4920VZEI4V
14
+ CcnQj6TjajAE1+O4PA2VnZHS83vyPFrUtvSfLcjH49OdTYbNev+JlxZApdECAwEA
15
+ AaOBgTB/MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBR6/TRjBiiZ
16
+ hsxbNSilKMQkwb0vuTAiBgNVHREEGzAZgRdzdGF0ZWxlc3Njb2RlQGdtYWlsLmNv
17
17
  bTAiBgNVHRIEGzAZgRdzdGF0ZWxlc3Njb2RlQGdtYWlsLmNvbTANBgkqhkiG9w0B
18
- AQsFAAOCAYEANtaR6OV7p1IJOsvVgGQzVg88NIOeXrfOaEDUPb6eg4JMOSL0Cvvl
19
- 2F7lB/ykbQcO4Oe7NucuavC7ClyG3c/V5eQ5TtPNWkMbVN9ESVR8wk5SjhiI8L35
20
- MBxJ6YU27eyDmazQJ7eCYcRJkuyWt3KcqgsEh7JyNnKcJ/3rgf1QW0IyJiGsXM1I
21
- SssQ/t7Ia2tVMrVMsvs834v9FRpVbO3dHdCO4t7zQBIADVcj4NqCDV10D6aji/Aa
22
- 35YJHwlkhuZH6AYC45QHt9dW0/OLmbFwoJqW7syrso2PParyMr4YcJwucXViRiL7
23
- l5aVpYdz/RTqdB92Mmud5Hj5zkuEE4CHBh8L8AJC5kZu/YUXXDtuECSMVhg5O84h
24
- QsdcuygyVASmw2aliMAFXfIBDYelduG0XwjdOREN3q4SDTKP+pfBxx6OdD1RfsYF
25
- /9HhtVbKLq34iQftF4oIH66bYDEyG5y4CLKQ8Nq0WDWq50OcaP9KpDiS21BC43SW
26
- t+NX7PDOWx4k
18
+ AQsFAAOCAYEAiO7cuTdkue580DXpGBVB1btv9bsCbWX9sgETBDaU6GmvNFH5pwci
19
+ ra30QslGM2Z9qV3TnoBYIXW7CfYAM+yHXOJuCT+27iPiGwsligW1ff84Ekpd5g7k
20
+ gh1zWVCmWWc/0kmQ0dOkMkhW6UFSn/s43Ma9+9jGi6nzRG2PrpiR6Y2rtXdfDmhv
21
+ k+ytaPG7WGIgIQ8DqX6flHMvxvOMumxMyLZCOQKpXuiowQAm/o39kAlJTNlzIrov
22
+ GTLRDyFTEY7XBq5krCcBEBN7ctFwa8eHGlnn+QGzd3qRI+G/LXNJPilv+VLS7yYQ
23
+ 3wy6sXJSOD4yrx8eeSG7TimKGHTElmdeNQo3kOqjl38uiD0MKoJKQeKZjQWRkYYy
24
+ igX9fV/4kFadNjjV6C089QcTTSZwMwQmVLM/wZ+jvGlv76C3JQ3cCFBgYFkAYIvZ
25
+ ZbwzMT0hTbAheOK8keN9gS1BMapNdauoKdmFjBnJ0XMLVK6BKB6TFMCmFN6HR5vS
26
+ 7coJssAvb8DC
27
27
  -----END CERTIFICATE-----
@@ -32,8 +32,8 @@ module NerdDice
32
32
 
33
33
  def get_harvest_totals_error_message(rescued_error)
34
34
  case rescued_error.message
35
- when /`total'/ then "Each element must respond to :total."
36
- when /`map'/ then "Argument must respond to :map."
35
+ when /[`']total'/ then "Each element must respond to :total."
36
+ when /[`']map'/ then "Argument must respond to :map."
37
37
  end
38
38
  end
39
39
  end
@@ -90,11 +90,11 @@ module NerdDice
90
90
  # * Subsequent calls to the same method name will not hit method_missing
91
91
  # * If the method name does not match the regular expression pattern, the default
92
92
  # implementation of method_missing is called by invoking super
93
- def method_missing(method_name, *args, **kwargs, &block)
93
+ def method_missing(method_name, ...)
94
94
  # returns false if no match
95
- if match_pattern_and_delegate(method_name, *args, **kwargs, &block)
95
+ if match_pattern_and_delegate(method_name, ...)
96
96
  # send the method after defining it
97
- send(method_name, *args, **kwargs, &block)
97
+ send(method_name, ...)
98
98
  else
99
99
  super
100
100
  end
@@ -111,12 +111,10 @@ module NerdDice
111
111
  # Compares the method name to the regular expression patterns for the module
112
112
  # * If the pattern matches the convenience method is defined and a truthy value is returned
113
113
  # * If the pattern does not match then the method returns false and method_missing invokes `super`
114
- def match_pattern_and_delegate(method_name, *args, **kwargs, &block)
114
+ def match_pattern_and_delegate(method_name, ...)
115
115
  case method_name.to_s
116
- when /\Aroll_\d*d\d+((#{ADV}|#{DIS})\d*)?#{MOD}?\z/o then define_roll_nndnn(method_name, *args, **kwargs,
117
- &block)
118
- when /\Atotal_\d*d\d+((#{ADV}|#{DIS})\d*)?#{MOD}?\z/o then define_total_nndnn(method_name, *args, **kwargs,
119
- &block)
116
+ when /\Aroll_\d*d\d+((#{ADV}|#{DIS})\d*)?#{MOD}?\z/o then define_roll_nndnn(method_name, ...)
117
+ when /\Atotal_\d*d\d+((#{ADV}|#{DIS})\d*)?#{MOD}?\z/o then define_total_nndnn(method_name, ...)
120
118
  else
121
119
  false
122
120
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NerdDice
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.2"
5
5
  end
data/nerd_dice.gemspec CHANGED
@@ -44,13 +44,13 @@ Gem::Specification.new do |spec|
44
44
  spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $PROGRAM_NAME.end_with?("gem")
45
45
 
46
46
  # Dependencies
47
- spec.add_dependency "securerandom", "~> 0.2", ">= 0.2.2"
47
+ spec.add_dependency "securerandom", "~> 0.3", ">= 0.3.1"
48
48
 
49
49
  # Development Dependencies
50
- spec.add_development_dependency "coveralls_reborn", "~> 0.27.0"
51
- spec.add_development_dependency "rubocop", "~> 1.46", ">= 1.46.0"
52
- spec.add_development_dependency "rubocop-performance", "~> 1.16", ">= 1.16.0"
53
- spec.add_development_dependency "rubocop-rake", "~> 0.6", ">= 0.6.0"
54
- spec.add_development_dependency "rubocop-rspec", "~> 2.18", ">= 2.18.1"
50
+ spec.add_development_dependency "coveralls_reborn", "~> 0.28.0"
51
+ spec.add_development_dependency "rubocop", "~> 1.73", ">= 1.73.2"
52
+ spec.add_development_dependency "rubocop-performance", "~> 1.24"
53
+ spec.add_development_dependency "rubocop-rake", "~> 0.7", ">= 0.7.1"
54
+ spec.add_development_dependency "rubocop-rspec", "~> 3.5"
55
55
  spec.add_development_dependency "simplecov-lcov", "~> 0.8.0"
56
56
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,42 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nerd_dice
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Duchemin
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain:
11
10
  - |
12
11
  -----BEGIN CERTIFICATE-----
13
12
  MIIEhTCCAu2gAwIBAgIBATANBgkqhkiG9w0BAQsFADBEMRYwFAYDVQQDDA1zdGF0
14
13
  ZWxlc3Njb2RlMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZ
15
- FgNjb20wHhcNMjMwMjIzMjMyMTQwWhcNMjQwMjIzMjMyMTQwWjBEMRYwFAYDVQQD
14
+ FgNjb20wHhcNMjUwMzA5MDIzOTE4WhcNMjYwMzA5MDIzOTE4WjBEMRYwFAYDVQQD
16
15
  DA1zdGF0ZWxlc3Njb2RlMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJ
17
- k/IsZAEZFgNjb20wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCxVzHS
18
- gYszan//tjTSO0z59UO1rUiT5G0//iyhiaYIiuwxhYFbfD+wOCou4M18pQtEb4qx
19
- o67tPfGimBAVak6fGfo8fo1ByHiKCvx3jgOjxNifT9pRFlBSr6ZvyXeu7zA0ddLr
20
- slw92DNqeRlZXqB0mxDtpKWONGc1XhAqEjEP3VL7g7x0xPQShcpXg/OyRPR5vyv8
21
- 66pXdFrXYZGrySfIB6ZOWFV6wGBj603rPdXOeYVeks6hKvw3wb4G1s7tvwTA5MWI
22
- otw6Mp9TaMdms9zTc5A3N58pueKfBJfwkICkdAGJDWC6sIXECoaTDRqVK96RSH/1
23
- 8tEPDoFYpJDOa5byX1j7srwO0B6WOtPxix7gW1wBbEp7eWSQf1k3k9XEh32SRsPq
24
- NJObRfhkzoa9p1tPkVP3nasDTK5gtisolwhb7Vimeup54yKfT/THv2iNEnGTvK1P
25
- sV4vC8nch88lBI1mIecmSh/mwED4Mb1dNtcyuB/+XnSI8vIzXJKAAKaT0eMCAwEA
26
- AaOBgTB/MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRP42hSa0JV
27
- QGDSobiGTYyfM570hjAiBgNVHREEGzAZgRdzdGF0ZWxlc3Njb2RlQGdtYWlsLmNv
16
+ k/IsZAEZFgNjb20wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC5DKNh
17
+ CkmctleyxdOAiDNRZ9clnavZJvsa6wOzhK37fOc0z6T1E/orTJiAz/JtORrtqSEF
18
+ lFWOKW1/rvpNx43jNLBqoRO9mbxhnMUK2zloCcKqGaOP4Oo1Rk88X+eaeT0/pU91
19
+ Z7BJZ26DhIqx1IAq4oVbDsPuLx7y8U9KDGrVJns0eKZSTqpU2IgvTbOWLArT2DCG
20
+ oFMky71x1BTIc0T4rm0sSDwrM+JQbdd1btJzA78cJNxTBGdjXoIVNil2XVL2YWx3
21
+ 6X1CZyn8LAt6yeseGltUq+goDMFuosMfMNEcwsYCwzs64fi1wIeLH3dQBbmM8ZxQ
22
+ BPVqaRxXfU+EaEYkokyO4Z4ziolvd3GHB0pd/fy1FXsLHaCx+DKSUm8XnslwJk2q
23
+ aN5ELvTvPhlenB/m3yKQaNkpQoTspLGQEyJgMDvhhq9FNLXWAXQa9i4920VZEI4V
24
+ CcnQj6TjajAE1+O4PA2VnZHS83vyPFrUtvSfLcjH49OdTYbNev+JlxZApdECAwEA
25
+ AaOBgTB/MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBR6/TRjBiiZ
26
+ hsxbNSilKMQkwb0vuTAiBgNVHREEGzAZgRdzdGF0ZWxlc3Njb2RlQGdtYWlsLmNv
28
27
  bTAiBgNVHRIEGzAZgRdzdGF0ZWxlc3Njb2RlQGdtYWlsLmNvbTANBgkqhkiG9w0B
29
- AQsFAAOCAYEANtaR6OV7p1IJOsvVgGQzVg88NIOeXrfOaEDUPb6eg4JMOSL0Cvvl
30
- 2F7lB/ykbQcO4Oe7NucuavC7ClyG3c/V5eQ5TtPNWkMbVN9ESVR8wk5SjhiI8L35
31
- MBxJ6YU27eyDmazQJ7eCYcRJkuyWt3KcqgsEh7JyNnKcJ/3rgf1QW0IyJiGsXM1I
32
- SssQ/t7Ia2tVMrVMsvs834v9FRpVbO3dHdCO4t7zQBIADVcj4NqCDV10D6aji/Aa
33
- 35YJHwlkhuZH6AYC45QHt9dW0/OLmbFwoJqW7syrso2PParyMr4YcJwucXViRiL7
34
- l5aVpYdz/RTqdB92Mmud5Hj5zkuEE4CHBh8L8AJC5kZu/YUXXDtuECSMVhg5O84h
35
- QsdcuygyVASmw2aliMAFXfIBDYelduG0XwjdOREN3q4SDTKP+pfBxx6OdD1RfsYF
36
- /9HhtVbKLq34iQftF4oIH66bYDEyG5y4CLKQ8Nq0WDWq50OcaP9KpDiS21BC43SW
37
- t+NX7PDOWx4k
28
+ AQsFAAOCAYEAiO7cuTdkue580DXpGBVB1btv9bsCbWX9sgETBDaU6GmvNFH5pwci
29
+ ra30QslGM2Z9qV3TnoBYIXW7CfYAM+yHXOJuCT+27iPiGwsligW1ff84Ekpd5g7k
30
+ gh1zWVCmWWc/0kmQ0dOkMkhW6UFSn/s43Ma9+9jGi6nzRG2PrpiR6Y2rtXdfDmhv
31
+ k+ytaPG7WGIgIQ8DqX6flHMvxvOMumxMyLZCOQKpXuiowQAm/o39kAlJTNlzIrov
32
+ GTLRDyFTEY7XBq5krCcBEBN7ctFwa8eHGlnn+QGzd3qRI+G/LXNJPilv+VLS7yYQ
33
+ 3wy6sXJSOD4yrx8eeSG7TimKGHTElmdeNQo3kOqjl38uiD0MKoJKQeKZjQWRkYYy
34
+ igX9fV/4kFadNjjV6C089QcTTSZwMwQmVLM/wZ+jvGlv76C3JQ3cCFBgYFkAYIvZ
35
+ ZbwzMT0hTbAheOK8keN9gS1BMapNdauoKdmFjBnJ0XMLVK6BKB6TFMCmFN6HR5vS
36
+ 7coJssAvb8DC
38
37
  -----END CERTIFICATE-----
39
- date: 2023-02-24 00:00:00.000000000 Z
38
+ date: 2025-03-09 00:00:00.000000000 Z
40
39
  dependencies:
41
40
  - !ruby/object:Gem::Dependency
42
41
  name: securerandom
@@ -44,114 +43,102 @@ dependencies:
44
43
  requirements:
45
44
  - - "~>"
46
45
  - !ruby/object:Gem::Version
47
- version: '0.2'
46
+ version: '0.3'
48
47
  - - ">="
49
48
  - !ruby/object:Gem::Version
50
- version: 0.2.2
49
+ version: 0.3.1
51
50
  type: :runtime
52
51
  prerelease: false
53
52
  version_requirements: !ruby/object:Gem::Requirement
54
53
  requirements:
55
54
  - - "~>"
56
55
  - !ruby/object:Gem::Version
57
- version: '0.2'
56
+ version: '0.3'
58
57
  - - ">="
59
58
  - !ruby/object:Gem::Version
60
- version: 0.2.2
59
+ version: 0.3.1
61
60
  - !ruby/object:Gem::Dependency
62
61
  name: coveralls_reborn
63
62
  requirement: !ruby/object:Gem::Requirement
64
63
  requirements:
65
64
  - - "~>"
66
65
  - !ruby/object:Gem::Version
67
- version: 0.27.0
66
+ version: 0.28.0
68
67
  type: :development
69
68
  prerelease: false
70
69
  version_requirements: !ruby/object:Gem::Requirement
71
70
  requirements:
72
71
  - - "~>"
73
72
  - !ruby/object:Gem::Version
74
- version: 0.27.0
73
+ version: 0.28.0
75
74
  - !ruby/object:Gem::Dependency
76
75
  name: rubocop
77
76
  requirement: !ruby/object:Gem::Requirement
78
77
  requirements:
79
78
  - - "~>"
80
79
  - !ruby/object:Gem::Version
81
- version: '1.46'
80
+ version: '1.73'
82
81
  - - ">="
83
82
  - !ruby/object:Gem::Version
84
- version: 1.46.0
83
+ version: 1.73.2
85
84
  type: :development
86
85
  prerelease: false
87
86
  version_requirements: !ruby/object:Gem::Requirement
88
87
  requirements:
89
88
  - - "~>"
90
89
  - !ruby/object:Gem::Version
91
- version: '1.46'
90
+ version: '1.73'
92
91
  - - ">="
93
92
  - !ruby/object:Gem::Version
94
- version: 1.46.0
93
+ version: 1.73.2
95
94
  - !ruby/object:Gem::Dependency
96
95
  name: rubocop-performance
97
96
  requirement: !ruby/object:Gem::Requirement
98
97
  requirements:
99
98
  - - "~>"
100
99
  - !ruby/object:Gem::Version
101
- version: '1.16'
102
- - - ">="
103
- - !ruby/object:Gem::Version
104
- version: 1.16.0
100
+ version: '1.24'
105
101
  type: :development
106
102
  prerelease: false
107
103
  version_requirements: !ruby/object:Gem::Requirement
108
104
  requirements:
109
105
  - - "~>"
110
106
  - !ruby/object:Gem::Version
111
- version: '1.16'
112
- - - ">="
113
- - !ruby/object:Gem::Version
114
- version: 1.16.0
107
+ version: '1.24'
115
108
  - !ruby/object:Gem::Dependency
116
109
  name: rubocop-rake
117
110
  requirement: !ruby/object:Gem::Requirement
118
111
  requirements:
119
112
  - - "~>"
120
113
  - !ruby/object:Gem::Version
121
- version: '0.6'
114
+ version: '0.7'
122
115
  - - ">="
123
116
  - !ruby/object:Gem::Version
124
- version: 0.6.0
117
+ version: 0.7.1
125
118
  type: :development
126
119
  prerelease: false
127
120
  version_requirements: !ruby/object:Gem::Requirement
128
121
  requirements:
129
122
  - - "~>"
130
123
  - !ruby/object:Gem::Version
131
- version: '0.6'
124
+ version: '0.7'
132
125
  - - ">="
133
126
  - !ruby/object:Gem::Version
134
- version: 0.6.0
127
+ version: 0.7.1
135
128
  - !ruby/object:Gem::Dependency
136
129
  name: rubocop-rspec
137
130
  requirement: !ruby/object:Gem::Requirement
138
131
  requirements:
139
132
  - - "~>"
140
133
  - !ruby/object:Gem::Version
141
- version: '2.18'
142
- - - ">="
143
- - !ruby/object:Gem::Version
144
- version: 2.18.1
134
+ version: '3.5'
145
135
  type: :development
146
136
  prerelease: false
147
137
  version_requirements: !ruby/object:Gem::Requirement
148
138
  requirements:
149
139
  - - "~>"
150
140
  - !ruby/object:Gem::Version
151
- version: '2.18'
152
- - - ">="
153
- - !ruby/object:Gem::Version
154
- version: 2.18.1
141
+ version: '3.5'
155
142
  - !ruby/object:Gem::Dependency
156
143
  name: simplecov-lcov
157
144
  requirement: !ruby/object:Gem::Requirement
@@ -190,7 +177,6 @@ files:
190
177
  - CHANGELOG.md
191
178
  - CONTRIBUTING.md
192
179
  - Gemfile
193
- - Gemfile.lock
194
180
  - LICENSE.txt
195
181
  - README.md
196
182
  - Rakefile
@@ -241,7 +227,6 @@ metadata:
241
227
  documentation_uri: https://github.com/statelesscode/nerd_dice/README.md
242
228
  github_repo: https://github.com/statelesscode/nerd_dice
243
229
  rubygems_mfa_required: 'true'
244
- post_install_message:
245
230
  rdoc_options: []
246
231
  require_paths:
247
232
  - lib
@@ -256,8 +241,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
256
241
  - !ruby/object:Gem::Version
257
242
  version: '0'
258
243
  requirements: []
259
- rubygems_version: 3.4.7
260
- signing_key:
244
+ rubygems_version: 3.6.2
261
245
  specification_version: 4
262
246
  summary: A Ruby Gem for rolling polyhedral dice.
263
247
  test_files: []
metadata.gz.sig CHANGED
Binary file
data/Gemfile.lock DELETED
@@ -1,93 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- nerd_dice (0.5.0)
5
- securerandom (~> 0.2, >= 0.2.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- ast (2.4.2)
11
- coveralls_reborn (0.27.0)
12
- simplecov (~> 0.22.0)
13
- term-ansicolor (~> 1.7)
14
- thor (~> 1.2)
15
- tins (~> 1.32)
16
- diff-lcs (1.5.0)
17
- docile (1.4.0)
18
- json (2.6.3)
19
- parallel (1.22.1)
20
- parser (3.2.1.0)
21
- ast (~> 2.4.1)
22
- rainbow (3.1.1)
23
- rake (13.0.6)
24
- regexp_parser (2.7.0)
25
- rexml (3.2.5)
26
- rspec (3.12.0)
27
- rspec-core (~> 3.12.0)
28
- rspec-expectations (~> 3.12.0)
29
- rspec-mocks (~> 3.12.0)
30
- rspec-core (3.12.1)
31
- rspec-support (~> 3.12.0)
32
- rspec-expectations (3.12.2)
33
- diff-lcs (>= 1.2.0, < 2.0)
34
- rspec-support (~> 3.12.0)
35
- rspec-mocks (3.12.3)
36
- diff-lcs (>= 1.2.0, < 2.0)
37
- rspec-support (~> 3.12.0)
38
- rspec-support (3.12.0)
39
- rubocop (1.46.0)
40
- json (~> 2.3)
41
- parallel (~> 1.10)
42
- parser (>= 3.2.0.0)
43
- rainbow (>= 2.2.2, < 4.0)
44
- regexp_parser (>= 1.8, < 3.0)
45
- rexml (>= 3.2.5, < 4.0)
46
- rubocop-ast (>= 1.26.0, < 2.0)
47
- ruby-progressbar (~> 1.7)
48
- unicode-display_width (>= 2.4.0, < 3.0)
49
- rubocop-ast (1.26.0)
50
- parser (>= 3.2.1.0)
51
- rubocop-capybara (2.17.1)
52
- rubocop (~> 1.41)
53
- rubocop-performance (1.16.0)
54
- rubocop (>= 1.7.0, < 2.0)
55
- rubocop-ast (>= 0.4.0)
56
- rubocop-rake (0.6.0)
57
- rubocop (~> 1.0)
58
- rubocop-rspec (2.18.1)
59
- rubocop (~> 1.33)
60
- rubocop-capybara (~> 2.17)
61
- ruby-progressbar (1.11.0)
62
- securerandom (0.2.2)
63
- simplecov (0.22.0)
64
- docile (~> 1.1)
65
- simplecov-html (~> 0.11)
66
- simplecov_json_formatter (~> 0.1)
67
- simplecov-html (0.12.3)
68
- simplecov-lcov (0.8.0)
69
- simplecov_json_formatter (0.1.4)
70
- sync (0.5.0)
71
- term-ansicolor (1.7.1)
72
- tins (~> 1.0)
73
- thor (1.2.1)
74
- tins (1.32.1)
75
- sync
76
- unicode-display_width (2.4.2)
77
-
78
- PLATFORMS
79
- ruby
80
-
81
- DEPENDENCIES
82
- coveralls_reborn (~> 0.27.0)
83
- nerd_dice!
84
- rake (~> 13.0)
85
- rspec (~> 3.12)
86
- rubocop (~> 1.46, >= 1.46.0)
87
- rubocop-performance (~> 1.16, >= 1.16.0)
88
- rubocop-rake (~> 0.6, >= 0.6.0)
89
- rubocop-rspec (~> 2.18, >= 2.18.1)
90
- simplecov-lcov (~> 0.8.0)
91
-
92
- BUNDLED WITH
93
- 2.2.22