malloc 1.5.1 → 1.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.
Files changed (4) hide show
  1. checksums.yaml +5 -5
  2. data/COPYING +10 -15
  3. data/config.rb +2 -2
  4. metadata +4 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 744b1efa3fefda1dc22c7dde2fe028bc0b1d5bbc
4
- data.tar.gz: 1e54d024c3f1cc6d4a8ab169aa6c5057cc549cb2
2
+ SHA256:
3
+ metadata.gz: 6e42b2f77163f3b96b0a6fbfe8af83e28a45196de59a838c89a65180d103ab9e
4
+ data.tar.gz: 1873d9927d98a9520d114e8826d04cc79a395dc123d243c89808619fc734ef9f
5
5
  SHA512:
6
- metadata.gz: 403b45df414258edf9db593fc42e4dfe289412d15b325ce3ec2a7167d08b05eb1783be506b5b0365e02259cefd620158bc27bd5cc0b6e647d578efb357537e7d
7
- data.tar.gz: b5af283f2dcd991216868342b2c65d6ac12522230ec3c55ca49644bca1c9f9d1b39efb87ba6d4b74e68bca8fb8f618d7810e8eadfed2294fa5f07c27b8248f9d
6
+ metadata.gz: 3280c4e497ebaebe621d0d27375a7c7de6eec4840630b446fd8927a631a62eccb9bcb494f6b2386f5c477cbf4b0edbd95f955f0514b6e69a767638edcdfc5b95
7
+ data.tar.gz: c3a1affba201fcaf49d4d3caea28cf3115d146e328639ed9a6eda615f35074b291138b01125f3c59bdc9d39be96724232cca28dea778a838217e8f0b0a3cd080
data/COPYING CHANGED
@@ -1,15 +1,11 @@
1
- This is the license for the computer vision library Hornetseye.
2
- Copyright (C) 2006 - 2010 Jan Wedekind, Sheffield, United Kingdom.
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
3
 
4
-
5
- GNU GENERAL PUBLIC LICENSE
6
- Version 3, 29 June 2007
7
-
8
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
9
5
  Everyone is permitted to copy and distribute verbatim copies
10
6
  of this license document, but changing it is not allowed.
11
7
 
12
- Preamble
8
+ Preamble
13
9
 
14
10
  The GNU General Public License is a free, copyleft license for
15
11
  software and other kinds of works.
@@ -72,7 +68,7 @@ patents cannot be used to render the program non-free.
72
68
  The precise terms and conditions for copying, distribution and
73
69
  modification follow.
74
70
 
75
- TERMS AND CONDITIONS
71
+ TERMS AND CONDITIONS
76
72
 
77
73
  0. Definitions.
78
74
 
@@ -622,9 +618,9 @@ an absolute waiver of all civil liability in connection with the
622
618
  Program, unless a warranty or assumption of liability accompanies a
623
619
  copy of the Program in return for a fee.
624
620
 
625
- END OF TERMS AND CONDITIONS
621
+ END OF TERMS AND CONDITIONS
626
622
 
627
- How to Apply These Terms to Your New Programs
623
+ How to Apply These Terms to Your New Programs
628
624
 
629
625
  If you develop a new program, and you want it to be of the greatest
630
626
  possible use to the public, the best way to achieve this is to make it
@@ -649,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found.
649
645
  GNU General Public License for more details.
650
646
 
651
647
  You should have received a copy of the GNU General Public License
652
- along with this program. If not, see <http://www.gnu.org/licenses/>.
648
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
653
649
 
654
650
  Also add information on how to contact you by electronic and paper mail.
655
651
 
@@ -668,12 +664,11 @@ might be different; for a GUI interface, you would use an "about box".
668
664
  You should also get your employer (if you work as a programmer) or school,
669
665
  if any, to sign a "copyright disclaimer" for the program, if necessary.
670
666
  For more information on this, and how to apply and follow the GNU GPL, see
671
- <http://www.gnu.org/licenses/>.
667
+ <https://www.gnu.org/licenses/>.
672
668
 
673
669
  The GNU General Public License does not permit incorporating your program
674
670
  into proprietary programs. If your program is a subroutine library, you
675
671
  may consider it more useful to permit linking proprietary applications with
676
672
  the library. If this is what you want to do, use the GNU Lesser General
677
673
  Public License instead of this License. But first, please read
678
- <http://www.gnu.org/philosophy/why-not-lgpl.html>.
679
-
674
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
data/config.rb CHANGED
@@ -1,13 +1,13 @@
1
1
  require 'rake'
2
2
 
3
3
  PKG_NAME = 'malloc'
4
- PKG_VERSION = '1.5.1'
4
+ PKG_VERSION = '1.5.2'
5
5
  SUMMARY = %q{Object for raw memory allocation and pointer operations}
6
6
  DESCRIPTION = %q{This Ruby extension defines the class Hornetseye::Malloc. Hornetseye::Malloc#new allows you to allocate memory, using Hornetseye::Malloc#+ one can do pointer manipulation, and Hornetseye::Malloc#read and Hornetseye::Malloc#write provide reading Ruby strings from memory and writing Ruby strings to memory.}
7
7
  LICENSE = 'GPL-3+'
8
8
  AUTHOR = %q{Jan Wedekind}
9
9
  EMAIL = %q{jan@wedesoft.de}
10
- HOMEPAGE = %q{http://wedesoft.github.com/malloc/}
10
+ HOMEPAGE = %q{http://wedesoft.github.io/malloc/}
11
11
  CFG = RbConfig::CONFIG
12
12
  CXX = ENV[ 'CXX' ] || 'g++'
13
13
  RB_FILES = FileList[ 'config.rb', 'lib/**/*.rb' ]
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: malloc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Wedekind
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2015-05-15 00:00:00.000000000 Z
10
+ date: 2025-06-30 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: This Ruby extension defines the class Hornetseye::Malloc. Hornetseye::Malloc#new
14
13
  allows you to allocate memory, using Hornetseye::Malloc#+ one can do pointer manipulation,
@@ -33,11 +32,10 @@ files:
33
32
  - lib/malloc_ext.rb
34
33
  - test/tc_malloc.rb
35
34
  - test/ts_malloc.rb
36
- homepage: http://wedesoft.github.com/malloc/
35
+ homepage: http://wedesoft.github.io/malloc/
37
36
  licenses:
38
37
  - GPL-3+
39
38
  metadata: {}
40
- post_install_message:
41
39
  rdoc_options: []
42
40
  require_paths:
43
41
  - lib
@@ -53,11 +51,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
51
  - !ruby/object:Gem::Version
54
52
  version: '0'
55
53
  requirements: []
56
- rubyforge_project: hornetseye
57
- rubygems_version: 2.4.6
58
- signing_key:
54
+ rubygems_version: 3.6.3
59
55
  specification_version: 4
60
56
  summary: Object for raw memory allocation and pointer operations
61
57
  test_files:
62
58
  - test/tc_malloc.rb
63
- has_rdoc: yard