iq-color 0.9.2 → 0.9.4

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/.gitignore CHANGED
@@ -3,4 +3,5 @@
3
3
  /cov
4
4
  /pkg
5
5
  /.document
6
- /.yardoc
6
+ /.yardoc
7
+ Gemfile.lock
data/README.rdoc CHANGED
@@ -46,8 +46,7 @@ Manually instantiate an RGBA value:
46
46
 
47
47
  == Documentation
48
48
 
49
- Documentation is handled with YARD[http://github.com/lsegal/yard]. You can
50
- generate the documentation by running:
49
+ Documentation is handled with YARD[http://github.com/lsegal/yard]. You can view the docs at http://rdoc.info/github/soniciq/iq-color/master/file/README.rdoc or alternatively, if you have the yard gem installed, run:
51
50
 
52
51
  rake yard
53
52
 
data/iq-color.gemspec CHANGED
@@ -15,4 +15,6 @@ Gem::Specification.new do |s|
15
15
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
16
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17
17
  s.require_paths = ["lib"]
18
+ s.add_development_dependency "shoulda", ">= 0"
19
+ s.add_development_dependency "yard", ">= 0"
18
20
  end
@@ -1,5 +1,5 @@
1
1
  module IQ
2
2
  module Color
3
- VERSION = "0.9.2"
3
+ VERSION = "0.9.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iq-color
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
4
+ hash: 51
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 2
10
- version: 0.9.2
9
+ - 4
10
+ version: 0.9.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jamie Hill
@@ -17,8 +17,35 @@ cert_chain: []
17
17
 
18
18
  date: 2011-01-18 00:00:00 +00:00
19
19
  default_executable:
20
- dependencies: []
21
-
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: shoulda
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ version: "0"
33
+ type: :development
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: yard
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 3
44
+ segments:
45
+ - 0
46
+ version: "0"
47
+ type: :development
48
+ version_requirements: *id002
22
49
  description: IQ::Color provides simple classes for representing colour values and the conversion to and from CSS3 strings.
23
50
  email:
24
51
  - jamie@soniciq.com