thefox-ext 2.0.0.pre.rc.2 → 2.0.0.pre.rc.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5eaf78c3f472a3847581eef496cf2cc9fcd03e7a6387cce8dd5507db7a184c68
4
- data.tar.gz: 5fd310c07a660cf911ef59fd86471e58e922c0afaab92787dd403fcec5f56ee7
3
+ metadata.gz: b93623e8f1580ed8a410e7dff5fd329db20f0096e45a6501f36802fa3505d463
4
+ data.tar.gz: f83016c7f973fdd4a1088b16331c45525d545942b38df256f13039761a82db71
5
5
  SHA512:
6
- metadata.gz: 0ae8cb7e60d344f6c004719f798f7149212c4a1660c9a2e113a8f2490c7de973af8cd421163504d0ce03b1cc88734f3822b3d68be5549fe3d3947f98b6b0c828
7
- data.tar.gz: 8ada80e9a953a159719c5fb54717c1fc9a82a870141c02fa2939ee095367cb0f816fa82227eed774db14dbda2563fb8e5489a753dbad21c87b846f83313295ad
6
+ metadata.gz: a8eb3f4c7d0021ccc8f88183f374af786cd8cdf9fa6afee18ac6b6e352ec4a4471e92ad3dbf91722442f9fab322943dca0771380e330273aedc9ef6d807c2945
7
+ data.tar.gz: d95cae63e69c1049a17a97f563a1c8ec28623030f894765cc71e59f92ddbceb9af4a5d8bf7a675106f42855e3f8dcbfb99c7b3c21d2e8526aba64f9d13127f75
@@ -226,7 +226,7 @@ module Lexer
226
226
  end
227
227
  end
228
228
 
229
- pp items3.map{ |item| item.inspect }
229
+ # pp items3.map{ |item| item.inspect }
230
230
 
231
231
  # puts
232
232
  # puts '-> Lexer.resolve L4 [convert to int]'
@@ -15,6 +15,9 @@ module Range
15
15
  # '1{5-7}' -> [15, 16, 17]
16
16
  # '1{1,02}' -> [11, 102]
17
17
  # '2{3{4,5},6}' -> [234, 235, 26]
18
+ # '1-3/1' -> [1, 2, 3]
19
+ # '1-10/2' -> [1, 3, 5, 7, 9]
20
+ # '2{10-20/2}' -> [210, 212, 214, 216, 218, 220]
18
21
  class Resolver
19
22
  def initialize(original = nil)
20
23
  # puts '-> TheFox::Range::Resolver.initialize'
@@ -1,7 +1,7 @@
1
1
 
2
2
  module TheFox
3
3
  module Ext
4
- VERSION = '2.0.0-rc.2'
4
+ VERSION = '2.0.0-rc.3'
5
5
  DATE = '2021-04-19'
6
6
  HOMEPAGE = 'https://github.com/TheFox/ext.rb'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thefox-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre.rc.2
4
+ version: 2.0.0.pre.rc.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Mayer