bytes 0.0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: bcdcc67a741e1c05bdd45da43251f2db46efe804
4
- data.tar.gz: 0ed1603a9adb971ccd2c7b382a43cb34b1274c99
2
+ SHA256:
3
+ metadata.gz: a17c54ac2788c884d6e1d8605b54621fe1707cf3252bbc6c81ad062e4dda6ca2
4
+ data.tar.gz: 23189f40e8c5459ccd8d53a2796524d0b3b217dd13749e48f406652683b3367d
5
5
  SHA512:
6
- metadata.gz: 2679e2dc3b63c14c532e869a61c79949dfc06cb0d398c1b7e8297d755d2500728df7bd716c24a7f3eeb28a3812def9b608ed71e431f4c0bf128c32ac9d25a1e4
7
- data.tar.gz: ffe4c1db890f1089bee3abcd462b4ead7412644f4a4a2f6a0f80f774f95935dcac4ab9b66093344d3c8913c78969fe6f3147ff0423a14d5edd81dddc40c37182
6
+ metadata.gz: 6203bdf2072f6fc54b01029a1de95896bc7d5eb37690b30f0186dc5615bc87ed098fb9b2542d9e9c29e6c2571f3bb8bc1793d802851de0da4910163fa74a75c1
7
+ data.tar.gz: e1aa00e67da7a420a6f791a7ed7954a0c229d553b1c1b9e284968e69b860c85150409cacd79fe1e4bf3e16a1d954b6c2ed8dee6c380404f4e89841835cbd00b7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,3 @@
1
- ### 0.0.1 / 2019-04-16
2
-
3
- * Everything is new. First release
1
+ ### 0.0.1 / 2019-04-16
2
+
3
+ * Everything is new. First release
data/Manifest.txt CHANGED
@@ -1,9 +1,6 @@
1
1
  CHANGELOG.md
2
- LICENSE.md
3
2
  Manifest.txt
4
3
  README.md
5
4
  Rakefile
6
5
  lib/bytes.rb
7
6
  lib/bytes/version.rb
8
- test/helper.rb
9
- test/test_string.rb
data/README.md CHANGED
@@ -1,14 +1,14 @@
1
-
2
1
  # Bytes
3
2
 
4
- bytes gem / library -
3
+ bytes - bits 'n' bytes made easy/easier incl. new buffer helper / wrapper class to help with the string byte vs character dichotomy
5
4
 
6
- * home :: [github.com/s6ruby/programming-bits-bytes](https://github.com/s6ruby/programming-bits-bytes)
7
- * bugs :: [github.com/s6ruby/programming-bits-bytes/issues](https://github.com/s6ruby/programming-bits-bytes/issues)
5
+ * home :: [github.com/rubycocos/core](https://github.com/rubycocos/core)
6
+ * bugs :: [github.com/rubycocos/core/issues](https://github.com/rubycocos/core/issues)
8
7
  * gem :: [rubygems.org/gems/bytes](https://rubygems.org/gems/bytes)
9
8
  * rdoc :: [rubydoc.info/gems/bytes](http://rubydoc.info/gems/bytes)
10
9
 
11
10
 
11
+
12
12
  ## Usage
13
13
 
14
14
  To be done
data/Rakefile CHANGED
@@ -1,29 +1,31 @@
1
- require 'hoe'
2
- require './lib/bytes/version.rb'
3
-
4
- Hoe.spec 'bytes' do
5
-
6
- self.version = Bytes::VERSION
7
-
8
- self.summary = "bytes"
9
- self.description = summary
10
-
11
- self.urls = ['https://github.com/s6ruby/programming-bits-bytes']
12
-
13
- self.author = 'Gerald Bauer'
14
- self.email = 'wwwmake@googlegroups.com'
15
-
16
- # switch extension to .markdown for gihub formatting
17
- self.readme_file = 'README.md'
18
- self.history_file = 'CHANGELOG.md'
19
-
20
- self.extra_deps = [
21
- ]
22
-
23
- self.licenses = ['Public Domain']
24
-
25
- self.spec_extras = {
26
- required_ruby_version: '>= 2.2.2'
27
- }
28
-
29
- end
1
+ require 'hoe'
2
+ require './lib/bytes/version.rb'
3
+
4
+
5
+ Hoe.spec 'bytes' do
6
+
7
+ self.version = Cocos::Module::Bytes::VERSION
8
+
9
+ self.summary = "bytes"
10
+ self.description = summary
11
+
12
+
13
+ self.urls = { home: 'https://github.com/rubycocos/core' }
14
+
15
+ self.author = 'Gerald Bauer'
16
+ self.email = 'wwwmake@googlegroups.com'
17
+
18
+ # switch extension to .markdown for gihub formatting
19
+ self.readme_file = 'README.md'
20
+ self.history_file = 'CHANGELOG.md'
21
+
22
+ self.extra_deps = [
23
+ ]
24
+
25
+ self.licenses = ['Public Domain']
26
+
27
+ self.spec_extras = {
28
+ required_ruby_version: '>= 2.2.2'
29
+ }
30
+
31
+ end
data/lib/bytes/version.rb CHANGED
@@ -1,24 +1,25 @@
1
- # encoding: utf-8
2
-
3
-
4
-
5
- class Bytes
6
-
7
- MAJOR = 0
8
- MINOR = 0
9
- PATCH = 1
10
- VERSION = [MAJOR,MINOR,PATCH].join('.')
11
-
12
- def self.version
13
- VERSION
14
- end
15
-
16
- def self.banner
17
- "bytes/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
18
- end
19
-
20
- def self.root
21
- "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
22
- end
23
-
24
- end # class Bytes
1
+
2
+ module Cocos
3
+ module Module
4
+ module Bytes
5
+
6
+ MAJOR = 0
7
+ MINOR = 1
8
+ PATCH = 1
9
+ VERSION = [MAJOR,MINOR,PATCH].join('.')
10
+
11
+ def self.version
12
+ VERSION
13
+ end
14
+
15
+ def self.banner
16
+ "bytes/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
17
+ end
18
+
19
+ def self.root
20
+ "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
21
+ end
22
+
23
+ end # module Bytes
24
+ end # module Module
25
+ end # module Cocos
data/lib/bytes.rb CHANGED
@@ -1,10 +1,134 @@
1
- # encoding: utf-8
2
-
3
- require 'pp'
4
-
5
- ## our own code
6
- require 'bytes/version' # note: let version always go first
7
-
8
-
9
-
10
- puts Bytes.banner ## say hello
1
+ require 'pp'
2
+ require 'forwardable'
3
+
4
+
5
+ ## our own code
6
+ require_relative 'bytes/version' # note: let version always go first
7
+
8
+
9
+ module BytesHelper
10
+ def hex_to_bin( hex )
11
+ ## todo/fix: do an argument regex hex check!!!!
12
+ raise TypeError, "BytesHelper.hex_to_bin - non-hexadecimal digit found in >#{hex}<" unless is_hex?( hex )
13
+
14
+ ## note: assume pack always returns string with BINARY/ASCII-8BIT encoding!!!
15
+ if ['0x', '0X'].include?( hex[0,2] ) ## cut-of leading 0x or 0X if present
16
+ [hex[2..-1]].pack('H*')
17
+ else
18
+ [hex].pack('H*')
19
+ end
20
+ end
21
+ alias_method :hex_to_bytes, :hex_to_bin
22
+ alias_method :h_to_b, :hex_to_bin
23
+ alias_method :htob, :hex_to_bin
24
+
25
+
26
+ def bin_to_hex( bin )
27
+ # note: unpack returns string with <Encoding:US-ASCII>
28
+ # convert to default encoding
29
+ ## todo/fix: do NOT hardcode UTF-8 - use default encoding - why? why not?
30
+ hex = bin.unpack('H*').first
31
+ ## note: hexdigits/chars (0-9a-f) should be safe, that is, always ASCII-7BIT/UTF_8 with needing to change any char codes
32
+ hex.encode!( Encoding::UTF_8 )
33
+ hex
34
+ end
35
+ alias_method :bytes_to_hex, :bin_to_hex
36
+ alias_method :b_to_h, :bin_to_hex
37
+ alias_method :btoh, :bin_to_hex
38
+
39
+
40
+ ########
41
+ # more helpers
42
+ ## check if it is a hex (string)
43
+ ## - allow optiona 0x or 0X and allow abcdef and ABCDEF
44
+ HEX_RE = /\A(?:0x)?[0-9a-f]*\z/i
45
+ def is_hex?( str ) !HEX_RE.match( str ).nil?; end
46
+ end # module BytesHelper
47
+
48
+
49
+
50
+
51
+ class Bytes
52
+ extend BytesHelper
53
+ ## e.g. lets you use
54
+ ## Bytes.hex_to_bin( hex )
55
+ ## Bytes.bin_to_hex( bin ) etc.
56
+
57
+
58
+ def self.from_hex( hex ) new( hex_to_bin( hex ) ); end
59
+
60
+ ## "semantic" constructor for wrapping (binary) strings e.g. same as Bytes.new(bin)
61
+ def self.wrap( bin ) new( bin ); end
62
+
63
+
64
+ def initialize( bin=String.new )
65
+ ## note: for now will NOT dup(licate) passed in binary array
66
+ ## you only get a new binary array if no arg passed in e.g. Bytes.new
67
+ raise ArgumentError, "Bytes.new - BINARY/ASCII-8BIT encoding expected; got: #{bin.encoding} for string >#{bin}<" if bin.encoding != Encoding::ASCII_8BIT
68
+ @bin = bin
69
+ end
70
+
71
+
72
+ ## add more string methods - why? why not?
73
+ extend Forwardable
74
+ def_delegators :@bin, :encoding,
75
+ :size, :length
76
+
77
+
78
+ def to_s() Bytes.bin_to_hex( @bin ); end
79
+ alias_method :to_hex, :to_s
80
+
81
+ def b() @bin; end
82
+
83
+ ## add to_a alias for @bin.bytes() - why? why not?
84
+
85
+
86
+ def ==(other)
87
+ self.class == other.class && @bin == other.b
88
+ end
89
+
90
+
91
+
92
+ def self.convert( arg )
93
+ ## used by Bytes() in global Kernel converter method
94
+ if arg.is_a?( Bytes )
95
+ arg ## pass-through as is
96
+ elsif arg.is_a?( String )
97
+ ## todo/fix: use coerce to_str if arg is NOT a string - why? why not
98
+ ##
99
+ if arg.encoding == Encoding::ASCII_8BIT
100
+ ## assume it's binary data - use as is (no hexstring conversion)
101
+ Bytes.wrap( arg ) ## todo/check: return str as-is (without new) - why? why not?
102
+ else ## assume it's a hexstring
103
+ Bytes.from_hex( arg )
104
+ end
105
+ else
106
+ ## check for array or such e.g if arg.is_a? Array
107
+ ## raise TypeError - why? why not?
108
+ raise ArgumentError, "Bytes() expected String; got #{arg.class.name}"
109
+ end
110
+ end
111
+ end
112
+
113
+
114
+
115
+ class String
116
+ def to_hex() Bytes.bin_to_hex( self ); end
117
+ ## add more aliases e.g. bin_to_hex or btoh or b_to_h or such - why? why not?
118
+
119
+ ## note: built-in String#hex returns string converted
120
+ ## to Integer -same as String.to_i(16) !!!!
121
+ end
122
+
123
+
124
+
125
+
126
+ module Kernel
127
+ def Bytes( arg ) Bytes.convert( arg ); end
128
+ end
129
+
130
+
131
+
132
+
133
+
134
+ puts Cocos::Module::Bytes.banner ## say hello
metadata CHANGED
@@ -1,67 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bytes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-15 00:00:00.000000000 Z
11
+ date: 2022-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdoc
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7'
20
23
  type: :development
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '4.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: hoe
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
37
  - - "~>"
32
38
  - !ruby/object:Gem::Version
33
- version: '3.16'
39
+ version: '3.23'
34
40
  type: :development
35
41
  prerelease: false
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
44
  - - "~>"
39
45
  - !ruby/object:Gem::Version
40
- version: '3.16'
46
+ version: '3.23'
41
47
  description: bytes
42
48
  email: wwwmake@googlegroups.com
43
49
  executables: []
44
50
  extensions: []
45
51
  extra_rdoc_files:
46
52
  - CHANGELOG.md
47
- - LICENSE.md
48
53
  - Manifest.txt
49
54
  - README.md
50
55
  files:
51
56
  - CHANGELOG.md
52
- - LICENSE.md
53
57
  - Manifest.txt
54
58
  - README.md
55
59
  - Rakefile
56
60
  - lib/bytes.rb
57
61
  - lib/bytes/version.rb
58
- - test/helper.rb
59
- - test/test_string.rb
60
- homepage: https://github.com/s6ruby/programming-bits-bytes
62
+ homepage: https://github.com/rubycocos/core
61
63
  licenses:
62
64
  - Public Domain
63
65
  metadata: {}
64
- post_install_message:
66
+ post_install_message:
65
67
  rdoc_options:
66
68
  - "--main"
67
69
  - README.md
@@ -78,9 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
80
  - !ruby/object:Gem::Version
79
81
  version: '0'
80
82
  requirements: []
81
- rubyforge_project:
82
- rubygems_version: 2.5.2
83
- signing_key:
83
+ rubygems_version: 3.3.7
84
+ signing_key:
84
85
  specification_version: 4
85
86
  summary: bytes
86
87
  test_files: []
data/LICENSE.md DELETED
@@ -1,116 +0,0 @@
1
- CC0 1.0 Universal
2
-
3
- Statement of Purpose
4
-
5
- The laws of most jurisdictions throughout the world automatically confer
6
- exclusive Copyright and Related Rights (defined below) upon the creator and
7
- subsequent owner(s) (each and all, an "owner") of an original work of
8
- authorship and/or a database (each, a "Work").
9
-
10
- Certain owners wish to permanently relinquish those rights to a Work for the
11
- purpose of contributing to a commons of creative, cultural and scientific
12
- works ("Commons") that the public can reliably and without fear of later
13
- claims of infringement build upon, modify, incorporate in other works, reuse
14
- and redistribute as freely as possible in any form whatsoever and for any
15
- purposes, including without limitation commercial purposes. These owners may
16
- contribute to the Commons to promote the ideal of a free culture and the
17
- further production of creative, cultural and scientific works, or to gain
18
- reputation or greater distribution for their Work in part through the use and
19
- efforts of others.
20
-
21
- For these and/or other purposes and motivations, and without any expectation
22
- of additional consideration or compensation, the person associating CC0 with a
23
- Work (the "Affirmer"), to the extent that he or she is an owner of Copyright
24
- and Related Rights in the Work, voluntarily elects to apply CC0 to the Work
25
- and publicly distribute the Work under its terms, with knowledge of his or her
26
- Copyright and Related Rights in the Work and the meaning and intended legal
27
- effect of CC0 on those rights.
28
-
29
- 1. Copyright and Related Rights. A Work made available under CC0 may be
30
- protected by copyright and related or neighboring rights ("Copyright and
31
- Related Rights"). Copyright and Related Rights include, but are not limited
32
- to, the following:
33
-
34
- i. the right to reproduce, adapt, distribute, perform, display, communicate,
35
- and translate a Work;
36
-
37
- ii. moral rights retained by the original author(s) and/or performer(s);
38
-
39
- iii. publicity and privacy rights pertaining to a person's image or likeness
40
- depicted in a Work;
41
-
42
- iv. rights protecting against unfair competition in regards to a Work,
43
- subject to the limitations in paragraph 4(a), below;
44
-
45
- v. rights protecting the extraction, dissemination, use and reuse of data in
46
- a Work;
47
-
48
- vi. database rights (such as those arising under Directive 96/9/EC of the
49
- European Parliament and of the Council of 11 March 1996 on the legal
50
- protection of databases, and under any national implementation thereof,
51
- including any amended or successor version of such directive); and
52
-
53
- vii. other similar, equivalent or corresponding rights throughout the world
54
- based on applicable law or treaty, and any national implementations thereof.
55
-
56
- 2. Waiver. To the greatest extent permitted by, but not in contravention of,
57
- applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
58
- unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
59
- and Related Rights and associated claims and causes of action, whether now
60
- known or unknown (including existing as well as future claims and causes of
61
- action), in the Work (i) in all territories worldwide, (ii) for the maximum
62
- duration provided by applicable law or treaty (including future time
63
- extensions), (iii) in any current or future medium and for any number of
64
- copies, and (iv) for any purpose whatsoever, including without limitation
65
- commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes
66
- the Waiver for the benefit of each member of the public at large and to the
67
- detriment of Affirmer's heirs and successors, fully intending that such Waiver
68
- shall not be subject to revocation, rescission, cancellation, termination, or
69
- any other legal or equitable action to disrupt the quiet enjoyment of the Work
70
- by the public as contemplated by Affirmer's express Statement of Purpose.
71
-
72
- 3. Public License Fallback. Should any part of the Waiver for any reason be
73
- judged legally invalid or ineffective under applicable law, then the Waiver
74
- shall be preserved to the maximum extent permitted taking into account
75
- Affirmer's express Statement of Purpose. In addition, to the extent the Waiver
76
- is so judged Affirmer hereby grants to each affected person a royalty-free,
77
- non transferable, non sublicensable, non exclusive, irrevocable and
78
- unconditional license to exercise Affirmer's Copyright and Related Rights in
79
- the Work (i) in all territories worldwide, (ii) for the maximum duration
80
- provided by applicable law or treaty (including future time extensions), (iii)
81
- in any current or future medium and for any number of copies, and (iv) for any
82
- purpose whatsoever, including without limitation commercial, advertising or
83
- promotional purposes (the "License"). The License shall be deemed effective as
84
- of the date CC0 was applied by Affirmer to the Work. Should any part of the
85
- License for any reason be judged legally invalid or ineffective under
86
- applicable law, such partial invalidity or ineffectiveness shall not
87
- invalidate the remainder of the License, and in such case Affirmer hereby
88
- affirms that he or she will not (i) exercise any of his or her remaining
89
- Copyright and Related Rights in the Work or (ii) assert any associated claims
90
- and causes of action with respect to the Work, in either case contrary to
91
- Affirmer's express Statement of Purpose.
92
-
93
- 4. Limitations and Disclaimers.
94
-
95
- a. No trademark or patent rights held by Affirmer are waived, abandoned,
96
- surrendered, licensed or otherwise affected by this document.
97
-
98
- b. Affirmer offers the Work as-is and makes no representations or warranties
99
- of any kind concerning the Work, express, implied, statutory or otherwise,
100
- including without limitation warranties of title, merchantability, fitness
101
- for a particular purpose, non infringement, or the absence of latent or
102
- other defects, accuracy, or the present or absence of errors, whether or not
103
- discoverable, all to the greatest extent permissible under applicable law.
104
-
105
- c. Affirmer disclaims responsibility for clearing rights of other persons
106
- that may apply to the Work or any use thereof, including without limitation
107
- any person's Copyright and Related Rights in the Work. Further, Affirmer
108
- disclaims responsibility for obtaining any necessary consents, permissions
109
- or other rights required for any use of the Work.
110
-
111
- d. Affirmer understands and acknowledges that Creative Commons is not a
112
- party to this document and has no duty or obligation with respect to this
113
- CC0 or use of the Work.
114
-
115
- For more information, please see
116
- <http://creativecommons.org/publicdomain/zero/1.0/
data/test/helper.rb DELETED
@@ -1,8 +0,0 @@
1
- ## minitest setup
2
-
3
- require 'minitest/autorun'
4
-
5
-
6
- ## our own code
7
-
8
- require 'bytes'
data/test/test_string.rb DELETED
@@ -1,32 +0,0 @@
1
- # encoding: utf-8
2
-
3
- ###
4
- # to run use
5
- # ruby -I ./lib -I ./test test/test_string.rb
6
-
7
-
8
- require 'helper'
9
-
10
-
11
- class TestString < MiniTest::Test
12
-
13
- def test_string
14
- ####
15
- # note: 1) String.new gets you String with "binary" encoding
16
- # 2) String Literal "" and String.new("")
17
- # gets you String with default encoding (utf-8)
18
-
19
- assert Encoding::ASCII_8BIT == String.new.encoding
20
- assert Encoding::ASCII_8BIT == String.new("".b).encoding
21
- assert Encoding::ASCII_8BIT == "".b.encoding
22
-
23
- assert Encoding::BINARY == Encoding::ASCII_8BIT
24
- assert Encoding::BINARY == String.new.encoding
25
- assert Encoding::BINARY == String.new("".b).encoding
26
- assert Encoding::BINARY == "".b.encoding
27
-
28
- assert Encoding::UTF_8 == "".encoding
29
- assert Encoding::UTF_8 == String.new("").encoding
30
- end
31
-
32
- end # class TestString