phashion 1.0.4 → 1.0.5

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.
data/CHANGES.md CHANGED
@@ -1,6 +1,11 @@
1
1
  History
2
2
  =========
3
3
 
4
+ 1.0.5
5
+ -------
6
+
7
+ * Fix CImg.h compilation problems. [#10]
8
+
4
9
  1.0.4
5
10
  -------
6
11
 
Binary file
data/lib/phashion.rb CHANGED
@@ -7,7 +7,7 @@
7
7
  # int ph_hamming_distance(ulong64 hasha, ulong64 hashb);
8
8
 
9
9
  module Phashion
10
- VERSION = '1.0.4'
10
+ VERSION = '1.0.5'
11
11
 
12
12
  class Image
13
13
  SETTINGS = {
data/phashion.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{phashion}
8
- s.version = "1.0.4"
8
+ s.version = "1.0.5"
9
9
  s.authors = ["Mike Perham"]
10
10
  s.description = %q{Simple wrapper around the pHash library}
11
11
  s.email = %q{mperham@gmail.com}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phashion
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-09 00:00:00.000000000Z
12
+ date: 2012-08-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake-compiler
16
- requirement: &70302466299500 !ruby/object:Gem::Requirement
16
+ requirement: &70298302351400 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: 0.7.0
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70302466299500
24
+ version_requirements: *70298302351400
25
25
  description: Simple wrapper around the pHash library
26
26
  email: mperham@gmail.com
27
27
  executables: []
@@ -35,7 +35,6 @@ files:
35
35
  - LICENSE
36
36
  - README.md
37
37
  - Rakefile
38
- - TODO.md
39
38
  - ext/phashion_ext/extconf.rb
40
39
  - ext/phashion_ext/pHash-0.9.3.tar.gz
41
40
  - ext/phashion_ext/phashion_ext.c
@@ -74,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
73
  version: '0'
75
74
  requirements: []
76
75
  rubyforge_project:
77
- rubygems_version: 1.8.7
76
+ rubygems_version: 1.8.15
78
77
  signing_key:
79
78
  specification_version: 3
80
79
  summary: Simple wrapper around the pHash library
data/TODO.md DELETED
@@ -1,6 +0,0 @@
1
- TODO
2
- =======
3
-
4
- - Add video and audio APIs (someone else will have to do this, I have no need for it).
5
- - Add broader support for the entire pHash API, include other types of hashes. Currently
6
- the image support hardcodes use of the DCT hash.