crc 0.3 → 0.3.1.1
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 +4 -4
- data/HISTORY.ja.md +18 -0
- data/README.md +84 -16
- data/bin/rbcrc +282 -0
- data/gemstub.rb +26 -6
- data/lib/crc.rb +39 -15
- data/lib/crc/_byruby.rb +89 -31
- data/lib/crc/_modules.rb +2 -1
- data/lib/crc/acrc.rb +2 -2
- data/lib/crc/codegen.rb +891 -0
- data/lib/crc/version.rb +1 -1
- metadata +13 -10
data/lib/crc/version.rb
CHANGED
metadata
CHANGED
@@ -1,36 +1,36 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.3.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dearblue
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '11'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '11'
|
27
27
|
description: |
|
28
|
-
|
29
|
-
|
30
|
-
Customization is posible for 1 to 64 bit width, any polynomial primitives, and with/without bit reflection input/output.
|
28
|
+
Pure ruby implemented general CRC (Cyclic Redundancy Check) generator.
|
29
|
+
Customization is posible for 1 to 64 bit width, any polynomials, and with/without bit reflection input/output.
|
31
30
|
If you need more speed, please use crc-turbo.
|
32
31
|
email: dearblue@users.osdn.me
|
33
|
-
executables:
|
32
|
+
executables:
|
33
|
+
- rbcrc
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files:
|
36
36
|
- HISTORY.ja.md
|
@@ -41,6 +41,7 @@ extra_rdoc_files:
|
|
41
41
|
- lib/crc/_combine.rb
|
42
42
|
- lib/crc/_modules.rb
|
43
43
|
- lib/crc/acrc.rb
|
44
|
+
- lib/crc/codegen.rb
|
44
45
|
- lib/crc/finder.rb
|
45
46
|
- lib/crc/version.rb
|
46
47
|
files:
|
@@ -49,12 +50,14 @@ files:
|
|
49
50
|
- README.md
|
50
51
|
- Rakefile
|
51
52
|
- benchmark.rb
|
53
|
+
- bin/rbcrc
|
52
54
|
- gemstub.rb
|
53
55
|
- lib/crc.rb
|
54
56
|
- lib/crc/_byruby.rb
|
55
57
|
- lib/crc/_combine.rb
|
56
58
|
- lib/crc/_modules.rb
|
57
59
|
- lib/crc/acrc.rb
|
60
|
+
- lib/crc/codegen.rb
|
58
61
|
- lib/crc/finder.rb
|
59
62
|
- lib/crc/version.rb
|
60
63
|
homepage: https://osdn.jp/projects/rutsubo/
|