dct 0.1.0 → 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
2
  SHA256:
3
- metadata.gz: d647a4b30cfa6da96410b2c680bf6662318bcd2cda2ff13977a4d25c8c4b1753
4
- data.tar.gz: e382886c5f3e98141cb0fa91378fac14d4d431f451c3f123912d90955e549a95
3
+ metadata.gz: d6e0764236033473f586308d6340a357098b343ecdc72a65a30432bd1101fde5
4
+ data.tar.gz: ce7482b72b65d34a5d5b013279ba94685b2109e3fe4b1d6f8a3a1f088252395d
5
5
  SHA512:
6
- metadata.gz: 07bea468cdbe06ba0b41847947199f3956fd607390ad724cc82950625b52c2db53efd90ad7df680f15e5774f038d2eb4583d6a5cf1797c02e8268910fc0328c5
7
- data.tar.gz: 5661172ac4982658b53d16fbe5b970eb9ce5379813cb54647e8585079b8d70ad9f0edfb10b2de211b8808045d372af3125d8181950ab25801bb597fedabc3f4b
6
+ metadata.gz: ff89e2209d2d0e42c99eb65693314437c9dc11858f3b77dd993e2af6bf77b9964d6081f50b81fa96c070cf1ab53ebc51e411302935d42655f02b8d530b0e0acb
7
+ data.tar.gz: 0b7fcaa3c9e9ca81dd6612d272b94d3cc7b3d7f77ab1a6ec67cac0a6407ef9cae9c5e48e3ef1cdc1b8d4319faf70fc4759ea6f0ebfdd12f50b3c42e547c40dbe
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dct (0.1.0)
4
+ dct (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -2,9 +2,12 @@
2
2
 
3
3
  ### Features
4
4
 
5
+ #### DONE
5
6
  - DCTII, DCTIII supported
6
7
  - non power of 2 supported
7
- - O(N) complexity (TODO: O(logN))
8
+
9
+ #### TODO
10
+ - O(logN) complexity implementation
8
11
 
9
12
  ### Products using this gem
10
13
 
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = 'Pure ruby implementation of DCT'
14
14
  spec.description = 'Pure ruby implementation of DCT'
15
- spec.homepage = 'https://github.com/contribu/dct.git'
15
+ spec.homepage = 'https://github.com/contribu/dct'
16
16
  spec.license = 'MIT'
17
17
 
18
18
  # Specify which files should be added to the gem when it is released.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dct
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - contribu
@@ -87,7 +87,7 @@ files:
87
87
  - dct.gemspec
88
88
  - lib/dct.rb
89
89
  - lib/dct/version.rb
90
- homepage: https://github.com/contribu/dct.git
90
+ homepage: https://github.com/contribu/dct
91
91
  licenses:
92
92
  - MIT
93
93
  metadata: {}