jnylen-colorscore 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a8c814223d7b429f76b6b62d53fbe3be2e5a42d3
4
- data.tar.gz: 46ccd43cf3c9b432366c2ea42904e4b8780fa549
2
+ SHA256:
3
+ metadata.gz: 7f9613d48cd2d230ffaed4557af2bd174c6e0f75ae29ba928963cafbdf57e903
4
+ data.tar.gz: 41cb272366eae3a162ea1b8c17b099efcd46fcbbdea8c5369331a9bb2aa0c25b
5
5
  SHA512:
6
- metadata.gz: ff4b836aa50ea6697793be254d12e0c98856b311ee1f69f6eec11b0069649b464d1f360b466c2e77a5714bc3b6ffb34d31329e628b52088405e7244371fd378e
7
- data.tar.gz: 60b82f50750ef6e663f849874b53086c8ba7144b38a6a0e814f2d0834a8b0148d2556639372e6f7bff74cfcfea9d4271f86391d931e23a76260ba5c58345dd8a
6
+ metadata.gz: ea722c77854bd698b327cdceacc322b7a45f105d4ee921ea2faa78eb1a3c7f9ff31417f4f02e587bfd388ffd14c4f5720b85302e9fb06fd829331bb3c99852c9
7
+ data.tar.gz: 855c37ac51300fb071624421ea07d4b73d68329ad4243cdcb96ce5f778f110b286c7d6045c1089edb93e9c542cfe36431490ae1ab2d4d1cda615086bfb7ea727
@@ -22,7 +22,7 @@ module Colorscore
22
22
 
23
23
  # Returns an array of colors in descending order of occurances.
24
24
  def colors
25
- hex_values = @lines.map { |line| line[/#([0-9A-F]{6}) /, 1] }.compact
25
+ hex_values = @lines.map { |line| line[/#([0-9A-F]{6})/, 1] }.compact
26
26
  hex_values.map { |hex| Color::RGB.from_html(hex) }
27
27
  end
28
28
 
@@ -1,3 +1,3 @@
1
1
  module Colorscore
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jnylen-colorscore
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joakim Nylén
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-08-08 00:00:00.000000000 Z
12
+ date: 2018-06-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: color
@@ -96,8 +96,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  version: '0'
97
97
  requirements: []
98
98
  rubyforge_project:
99
- rubygems_version: 2.5.1
99
+ rubygems_version: 2.7.7
100
100
  signing_key:
101
101
  specification_version: 4
102
102
  summary: Finds the dominant colors in an image.
103
- test_files: []
103
+ test_files:
104
+ - test/fixtures/skydiver.jpg
105
+ - test/fixtures/transparency.png
106
+ - test/histogram_test.rb
107
+ - test/metrics_test.rb
108
+ - test/palette_test.rb
109
+ - test/test_helper.rb