ifmapper 2.2.7 → 2.2.8

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: 42dcb91b23b516b1e32d140021807cd8fa4a8d5fa9ce07cc8610802910ce10ef
4
- data.tar.gz: 924c0771277515f048922e405492e159326f0980b0df11f91ff52ec62f3060fa
3
+ metadata.gz: 4d9a1a260a1e20a21172a362f6387e676d7d89a72a3722156b6de9c4bc684c45
4
+ data.tar.gz: 877f69c90c7d4e991a2b1e1fdb4185fa6ca35f8878cc252bfad993c104e19d46
5
5
  SHA512:
6
- metadata.gz: 190c5138279e5440b8182cc04c57234c933b1b6564e45dfe2ec469ed0c1ea9d808d36273183d593c7c6b7cdda35d61d227734ee7200cd101746e1b0d7ad39605
7
- data.tar.gz: e58274e4342390350c977c94083adbe0d2728c706cd56ef730cea4b3b93cdf2aaf75883be12fd2c1049d46e2f65158d4574f9b57340613b4d1367eba19160738
6
+ metadata.gz: 66b404ce5bd3f67a112eccf5ce6cbb8f00b8f0b7ace6a821c320fec1da597d67330a947e0165206fe9bbd7c812156ead14a617ed242418694b472a93abd5b867
7
+ data.tar.gz: 61a55684f0c85f90eb822aa49d18f66c04d0f0592d7a873dabc7c853e848ecb413badf64964adaeffa4e8f5ee729229830b7c623067a9fabaf3dbb0ca602e826
data/HISTORY.txt CHANGED
@@ -1,3 +1,5 @@
1
+ v2.2.7 Removed debugging output.
2
+
1
3
  v2.2.6 Fixed a problem with TADS' 1893 and Ruby3.0 using frozen strings.
2
4
 
3
5
  v2.2.0 Updated Spanish documentation to be in sync with the English one.
data/IFMapper.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  require "rubygems"
3
3
 
4
- VERSION = '2.2.7'
4
+ VERSION = '2.2.8'
5
5
  AUTHOR = "Gonzalo Garramuño"
6
6
  HOMEPAGE = 'http://ggarra13.github.io/ifmapper/en/start.html'
7
7
  EMAIL = 'ggarra13@gmail.com'
@@ -216,7 +216,7 @@ class FXConnection < Connection
216
216
  p << p[-1]
217
217
  p << p[-1]
218
218
  p << p[-1]
219
- return dc.drawBSpline( p )
219
+ return drawBSpline( dc, p )
220
220
  end
221
221
 
222
222
  #
@@ -41,12 +41,10 @@ class FXSpline
41
41
  end
42
42
  end
43
43
 
44
- class FXDC
45
- # Draw a bspline curve of any number of segments
46
- def drawBSpline(p)
47
- tmp = FXSpline::bspline(p)
48
- pts = tmp.collect { |x| FXPoint.new( x[0].to_i, x[1].to_i) }
49
- drawLines(pts)
50
- return pts
51
- end
44
+ # Draw a bspline curve of any number of segments
45
+ def drawBSpline(dc, p)
46
+ tmp = FXSpline::bspline(p)
47
+ pts = tmp.collect { |x| FXPoint.new( x[0].to_i, x[1].to_i) }
48
+ dc.drawLines(pts)
49
+ return pts
52
50
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ifmapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.7
4
+ version: 2.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gonzalo Garramuño
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-30 00:00:00.000000000 Z
11
+ date: 2024-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -332,7 +332,7 @@ homepage: http://ggarra13.github.io/ifmapper/en/start.html
332
332
  licenses:
333
333
  - GPL-2.0
334
334
  metadata: {}
335
- post_install_message:
335
+ post_install_message:
336
336
  rdoc_options: []
337
337
  require_paths:
338
338
  - lib
@@ -347,8 +347,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
347
347
  - !ruby/object:Gem::Version
348
348
  version: '0'
349
349
  requirements: []
350
- rubygems_version: 3.3.5
351
- signing_key:
350
+ rubygems_version: 3.4.20
351
+ signing_key:
352
352
  specification_version: 4
353
353
  summary: Interactive Fiction Mapping Tool.
354
354
  test_files: []