crc 0.3 → 0.3.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  #!ruby
2
2
 
3
3
  class CRC
4
- VERSION = "0.3"
4
+ VERSION = "0.3.1.1"
5
5
  end
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: '0.3'
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-07-31 00:00:00.000000000 Z
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: '0'
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: '0'
26
+ version: '11'
27
27
  description: |
28
- This is a general CRC (Cyclic Redundancy Check) generator for ruby.
29
- It is written by pure ruby.
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/