images_gallery 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/Rakefile +10 -1
  4. data/lib/images_gallery/generator.rb +16 -1
  5. data/lib/images_gallery/models/collection.rb +4 -0
  6. data/lib/images_gallery/models/image.rb +9 -5
  7. data/lib/images_gallery/models/source.rb +8 -0
  8. data/lib/images_gallery/templates/_thumbnails.html.erb +3 -2
  9. data/lib/images_gallery/templates/layout.html.erb +1 -1
  10. data/lib/images_gallery/version.rb +1 -1
  11. data/lib/images_gallery/views/base.rb +6 -4
  12. data/lib/images_gallery/views/iso.rb +30 -0
  13. data/lib/images_gallery/views/model.rb +1 -0
  14. data/spec/features/iso_pages/canon_eos_20d_iso_100_page_spec.rb +14 -0
  15. data/spec/features/iso_pages/lux_d_3_iso_100_page_spec.rb +14 -0
  16. data/spec/features/iso_pages/lux_d_3_iso_200_page_spec.rb +14 -0
  17. data/spec/features/models_pages/canon_eos_20d_page_spec.rb +7 -0
  18. data/spec/features/models_pages/lux_d_3_page_spec.rb +11 -0
  19. data/spec/lib/images_gallery/models/collection_spec.rb +1 -0
  20. data/spec/lib/images_gallery/models/source_spec.rb +7 -2
  21. data/spec/lib/images_gallery/views/iso_spec.rb +12 -0
  22. data/spec/support/spec_for_image_interface.rb +4 -0
  23. data/spec/support/spec_for_iso_page.rb +15 -0
  24. data/spec/support/spec_for_view_interface.rb +49 -0
  25. data/spec/tmp/canon.html +5 -3
  26. data/spec/tmp/canon/canon_eos_20d.html +9 -1
  27. data/spec/tmp/canon/canon_eos_20d/100.html +77 -0
  28. data/spec/tmp/canon/canon_eos_400d_digital.html +9 -1
  29. data/spec/tmp/canon/canon_eos_400d_digital/200.html +77 -0
  30. data/spec/tmp/fuji_photo_film_co_ltd.html +3 -2
  31. data/spec/tmp/fuji_photo_film_co_ltd/slp1000se.html +9 -1
  32. data/spec/tmp/fuji_photo_film_co_ltd/slp1000se/speed_ratings_unknown.html +77 -0
  33. data/spec/tmp/fujifilm.html +3 -2
  34. data/spec/tmp/fujifilm/finepix_s6500fd.html +9 -1
  35. data/spec/tmp/fujifilm/finepix_s6500fd/400.html +77 -0
  36. data/spec/tmp/index.html +21 -11
  37. data/spec/tmp/leica.html +11 -6
  38. data/spec/tmp/leica/d_lux_3.html +37 -1
  39. data/spec/tmp/leica/d_lux_3/100.html +87 -0
  40. data/spec/tmp/leica/d_lux_3/200.html +77 -0
  41. data/spec/tmp/leica/d_lux_3/800.html +77 -0
  42. data/spec/tmp/nikon_corporation.html +3 -2
  43. data/spec/tmp/nikon_corporation/nikon_d80.html +9 -1
  44. data/spec/tmp/nikon_corporation/nikon_d80/100.html +77 -0
  45. data/spec/tmp/panasonic.html +5 -3
  46. data/spec/tmp/panasonic/dmc_fz30.html +15 -1
  47. data/spec/tmp/panasonic/dmc_fz30/80.html +82 -0
  48. data/spec/tmp/unknown_make.html +5 -3
  49. data/spec/tmp/unknown_make/unknown_model.html +15 -1
  50. data/spec/tmp/unknown_make/unknown_model/speed_ratings_unknown.html +82 -0
  51. metadata +80 -35
  52. data/spec/support/spec_for_view_inerface.rb +0 -19
@@ -35,7 +35,7 @@
35
35
  color: #333;
36
36
  font-size: .8rem;
37
37
  font-variant: small-caps;
38
- height: 3rem;
38
+ height: 4rem;
39
39
  left: 0;
40
40
  line-height: 1.2rem;
41
41
  opacity: 0;
@@ -69,9 +69,10 @@
69
69
  <div class="grid-item">
70
70
  <img alt="Image 31820" src="http://ih1.redbubble.net/work.31820.1.flat,135x135,075,f.jpg"/>
71
71
 
72
- <a class="grid-item-details" href="nikon_corporation/nikon_d80.html" title="Browse all the NIKON D80 images.">
72
+ <a class="grid-item-details" href="nikon_corporation/nikon_d80/100.html" title="Browse all the NIKON D80 @ ISO 100 images.">
73
73
  <div>NIKON CORPORATION</div>
74
74
  <div>NIKON D80</div>
75
+ <div><small>ISO 100</small></div>
75
76
  </a>
76
77
 
77
78
  </div>
@@ -35,7 +35,7 @@
35
35
  color: #333;
36
36
  font-size: .8rem;
37
37
  font-variant: small-caps;
38
- height: 3rem;
38
+ height: 4rem;
39
39
  left: 0;
40
40
  line-height: 1.2rem;
41
41
  opacity: 0;
@@ -60,6 +60,8 @@
60
60
 
61
61
  <a class="nav-link" href="../nikon_corporation.html">Browse all the NIKON CORPORATION images</a>
62
62
 
63
+ <a class="nav-link" href="../nikon_corporation/nikon_d80/100.html">ISO 100</a>
64
+
63
65
  </nav>
64
66
 
65
67
  </header>
@@ -69,6 +71,12 @@
69
71
  <div class="grid-item">
70
72
  <img alt="Image 31820" src="http://ih1.redbubble.net/work.31820.1.flat,135x135,075,f.jpg"/>
71
73
 
74
+ <a class="grid-item-details" href="../nikon_corporation/nikon_d80/100.html" title="Browse all the NIKON D80 @ ISO 100 images.">
75
+ <div>NIKON CORPORATION</div>
76
+ <div>NIKON D80</div>
77
+ <div><small>ISO 100</small></div>
78
+ </a>
79
+
72
80
  </div>
73
81
 
74
82
  </div>
@@ -0,0 +1,77 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Images by (NIKON CORPORATION) NIKON D80 @ ISO 100</title>
6
+ <style type="text/css">
7
+ html, body {
8
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
9
+ font-size: 1rem;
10
+ }
11
+ nav {
12
+ border: 1px solid #ccc;
13
+ border-width: 1px 0;
14
+ margin: 2rem 0;
15
+ }
16
+ .nav-link {
17
+ display: inline-block;
18
+ line-height: 3rem;
19
+ padding: 0 1rem;
20
+ text-decoration: none;
21
+ text-transform: uppercase;
22
+ }
23
+ .grid {
24
+ max-width: 960px;
25
+ }
26
+ .grid-item {
27
+ border: 1px solid #ccc;
28
+ display: inline-block;
29
+ padding: 10px 10px 5px;
30
+ position: relative;
31
+ margin: 5px;
32
+ }
33
+ .grid-item-details {
34
+ background-color: rgba(255, 255, 255, 0.9);
35
+ color: #333;
36
+ font-size: .8rem;
37
+ font-variant: small-caps;
38
+ height: 4rem;
39
+ left: 0;
40
+ line-height: 1.2rem;
41
+ opacity: 0;
42
+ padding: .2rem 0 10px;
43
+ position: absolute;
44
+ width: 100%;
45
+ bottom: 0;
46
+ text-align: center;
47
+ text-decoration: none;
48
+ }
49
+ .grid-item:hover .grid-item-details {
50
+ opacity: 1;
51
+ }
52
+ </style>
53
+ </head>
54
+ <body>
55
+ <header>
56
+ <h1>Images by (NIKON CORPORATION) NIKON D80 @ ISO 100</h1>
57
+ <nav>
58
+
59
+ <a class="nav-link" href="../../index.html">Browse all the images</a>
60
+
61
+ <a class="nav-link" href="../../nikon_corporation/nikon_d80.html">Browse all the NIKON D80 images</a>
62
+
63
+ </nav>
64
+
65
+ </header>
66
+
67
+ <div class="grid">
68
+
69
+ <div class="grid-item">
70
+ <img alt="Image 31820" src="http://ih1.redbubble.net/work.31820.1.flat,135x135,075,f.jpg"/>
71
+
72
+ </div>
73
+
74
+ </div>
75
+
76
+ </body>
77
+ </html>
@@ -35,7 +35,7 @@
35
35
  color: #333;
36
36
  font-size: .8rem;
37
37
  font-variant: small-caps;
38
- height: 3rem;
38
+ height: 4rem;
39
39
  left: 0;
40
40
  line-height: 1.2rem;
41
41
  opacity: 0;
@@ -69,9 +69,10 @@
69
69
  <div class="grid-item">
70
70
  <img alt="Image 3745978" src="http://ih1.redbubble.net/work.3745978.1.flat,135x135,075,f.jpg"/>
71
71
 
72
- <a class="grid-item-details" href="panasonic/dmc_fz30.html" title="Browse all the DMC-FZ30 images.">
72
+ <a class="grid-item-details" href="panasonic/dmc_fz30/80.html" title="Browse all the DMC-FZ30 @ ISO 80 images.">
73
73
  <div>Panasonic</div>
74
74
  <div>DMC-FZ30</div>
75
+ <div><small>ISO 80</small></div>
75
76
  </a>
76
77
 
77
78
  </div>
@@ -79,9 +80,10 @@
79
80
  <div class="grid-item">
80
81
  <img alt="Image 3775226" src="http://ih1.redbubble.net/work.3775226.1.flat,135x135,075,f.jpg"/>
81
82
 
82
- <a class="grid-item-details" href="panasonic/dmc_fz30.html" title="Browse all the DMC-FZ30 images.">
83
+ <a class="grid-item-details" href="panasonic/dmc_fz30/80.html" title="Browse all the DMC-FZ30 @ ISO 80 images.">
83
84
  <div>Panasonic</div>
84
85
  <div>DMC-FZ30</div>
86
+ <div><small>ISO 80</small></div>
85
87
  </a>
86
88
 
87
89
  </div>
@@ -35,7 +35,7 @@
35
35
  color: #333;
36
36
  font-size: .8rem;
37
37
  font-variant: small-caps;
38
- height: 3rem;
38
+ height: 4rem;
39
39
  left: 0;
40
40
  line-height: 1.2rem;
41
41
  opacity: 0;
@@ -60,6 +60,8 @@
60
60
 
61
61
  <a class="nav-link" href="../panasonic.html">Browse all the Panasonic images</a>
62
62
 
63
+ <a class="nav-link" href="../panasonic/dmc_fz30/80.html">ISO 80</a>
64
+
63
65
  </nav>
64
66
 
65
67
  </header>
@@ -69,11 +71,23 @@
69
71
  <div class="grid-item">
70
72
  <img alt="Image 3745978" src="http://ih1.redbubble.net/work.3745978.1.flat,135x135,075,f.jpg"/>
71
73
 
74
+ <a class="grid-item-details" href="../panasonic/dmc_fz30/80.html" title="Browse all the DMC-FZ30 @ ISO 80 images.">
75
+ <div>Panasonic</div>
76
+ <div>DMC-FZ30</div>
77
+ <div><small>ISO 80</small></div>
78
+ </a>
79
+
72
80
  </div>
73
81
 
74
82
  <div class="grid-item">
75
83
  <img alt="Image 3775226" src="http://ih1.redbubble.net/work.3775226.1.flat,135x135,075,f.jpg"/>
76
84
 
85
+ <a class="grid-item-details" href="../panasonic/dmc_fz30/80.html" title="Browse all the DMC-FZ30 @ ISO 80 images.">
86
+ <div>Panasonic</div>
87
+ <div>DMC-FZ30</div>
88
+ <div><small>ISO 80</small></div>
89
+ </a>
90
+
77
91
  </div>
78
92
 
79
93
  </div>
@@ -0,0 +1,82 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Images by (Panasonic) DMC-FZ30 @ ISO 80</title>
6
+ <style type="text/css">
7
+ html, body {
8
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
9
+ font-size: 1rem;
10
+ }
11
+ nav {
12
+ border: 1px solid #ccc;
13
+ border-width: 1px 0;
14
+ margin: 2rem 0;
15
+ }
16
+ .nav-link {
17
+ display: inline-block;
18
+ line-height: 3rem;
19
+ padding: 0 1rem;
20
+ text-decoration: none;
21
+ text-transform: uppercase;
22
+ }
23
+ .grid {
24
+ max-width: 960px;
25
+ }
26
+ .grid-item {
27
+ border: 1px solid #ccc;
28
+ display: inline-block;
29
+ padding: 10px 10px 5px;
30
+ position: relative;
31
+ margin: 5px;
32
+ }
33
+ .grid-item-details {
34
+ background-color: rgba(255, 255, 255, 0.9);
35
+ color: #333;
36
+ font-size: .8rem;
37
+ font-variant: small-caps;
38
+ height: 4rem;
39
+ left: 0;
40
+ line-height: 1.2rem;
41
+ opacity: 0;
42
+ padding: .2rem 0 10px;
43
+ position: absolute;
44
+ width: 100%;
45
+ bottom: 0;
46
+ text-align: center;
47
+ text-decoration: none;
48
+ }
49
+ .grid-item:hover .grid-item-details {
50
+ opacity: 1;
51
+ }
52
+ </style>
53
+ </head>
54
+ <body>
55
+ <header>
56
+ <h1>Images by (Panasonic) DMC-FZ30 @ ISO 80</h1>
57
+ <nav>
58
+
59
+ <a class="nav-link" href="../../index.html">Browse all the images</a>
60
+
61
+ <a class="nav-link" href="../../panasonic/dmc_fz30.html">Browse all the DMC-FZ30 images</a>
62
+
63
+ </nav>
64
+
65
+ </header>
66
+
67
+ <div class="grid">
68
+
69
+ <div class="grid-item">
70
+ <img alt="Image 3745978" src="http://ih1.redbubble.net/work.3745978.1.flat,135x135,075,f.jpg"/>
71
+
72
+ </div>
73
+
74
+ <div class="grid-item">
75
+ <img alt="Image 3775226" src="http://ih1.redbubble.net/work.3775226.1.flat,135x135,075,f.jpg"/>
76
+
77
+ </div>
78
+
79
+ </div>
80
+
81
+ </body>
82
+ </html>
@@ -35,7 +35,7 @@
35
35
  color: #333;
36
36
  font-size: .8rem;
37
37
  font-variant: small-caps;
38
- height: 3rem;
38
+ height: 4rem;
39
39
  left: 0;
40
40
  line-height: 1.2rem;
41
41
  opacity: 0;
@@ -69,9 +69,10 @@
69
69
  <div class="grid-item">
70
70
  <img alt="Image 26583" src="http://ih1.redbubble.net/work.26583.1.flat,135x135,075,f.jpg"/>
71
71
 
72
- <a class="grid-item-details" href="unknown_make/unknown_model.html" title="Browse all the Unknown Model images.">
72
+ <a class="grid-item-details" href="unknown_make/unknown_model/speed_ratings_unknown.html" title="Browse all the Unknown Model @ ISO speed ratings unknown images.">
73
73
  <div>Unknown Make</div>
74
74
  <div>Unknown Model</div>
75
+ <div><small>ISO speed ratings unknown</small></div>
75
76
  </a>
76
77
 
77
78
  </div>
@@ -79,9 +80,10 @@
79
80
  <div class="grid-item">
80
81
  <img alt="Image 867035" src="http://ih1.redbubble.net/work.867035.1.flat,135x135,075,f.jpg"/>
81
82
 
82
- <a class="grid-item-details" href="unknown_make/unknown_model.html" title="Browse all the Unknown Model images.">
83
+ <a class="grid-item-details" href="unknown_make/unknown_model/speed_ratings_unknown.html" title="Browse all the Unknown Model @ ISO speed ratings unknown images.">
83
84
  <div>Unknown Make</div>
84
85
  <div>Unknown Model</div>
86
+ <div><small>ISO speed ratings unknown</small></div>
85
87
  </a>
86
88
 
87
89
  </div>
@@ -35,7 +35,7 @@
35
35
  color: #333;
36
36
  font-size: .8rem;
37
37
  font-variant: small-caps;
38
- height: 3rem;
38
+ height: 4rem;
39
39
  left: 0;
40
40
  line-height: 1.2rem;
41
41
  opacity: 0;
@@ -60,6 +60,8 @@
60
60
 
61
61
  <a class="nav-link" href="../unknown_make.html">Browse all the Unknown Make images</a>
62
62
 
63
+ <a class="nav-link" href="../unknown_make/unknown_model/speed_ratings_unknown.html">ISO speed ratings unknown</a>
64
+
63
65
  </nav>
64
66
 
65
67
  </header>
@@ -69,11 +71,23 @@
69
71
  <div class="grid-item">
70
72
  <img alt="Image 26583" src="http://ih1.redbubble.net/work.26583.1.flat,135x135,075,f.jpg"/>
71
73
 
74
+ <a class="grid-item-details" href="../unknown_make/unknown_model/speed_ratings_unknown.html" title="Browse all the Unknown Model @ ISO speed ratings unknown images.">
75
+ <div>Unknown Make</div>
76
+ <div>Unknown Model</div>
77
+ <div><small>ISO speed ratings unknown</small></div>
78
+ </a>
79
+
72
80
  </div>
73
81
 
74
82
  <div class="grid-item">
75
83
  <img alt="Image 867035" src="http://ih1.redbubble.net/work.867035.1.flat,135x135,075,f.jpg"/>
76
84
 
85
+ <a class="grid-item-details" href="../unknown_make/unknown_model/speed_ratings_unknown.html" title="Browse all the Unknown Model @ ISO speed ratings unknown images.">
86
+ <div>Unknown Make</div>
87
+ <div>Unknown Model</div>
88
+ <div><small>ISO speed ratings unknown</small></div>
89
+ </a>
90
+
77
91
  </div>
78
92
 
79
93
  </div>
@@ -0,0 +1,82 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Images by (Unknown Make) Unknown Model @ ISO speed ratings unknown</title>
6
+ <style type="text/css">
7
+ html, body {
8
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
9
+ font-size: 1rem;
10
+ }
11
+ nav {
12
+ border: 1px solid #ccc;
13
+ border-width: 1px 0;
14
+ margin: 2rem 0;
15
+ }
16
+ .nav-link {
17
+ display: inline-block;
18
+ line-height: 3rem;
19
+ padding: 0 1rem;
20
+ text-decoration: none;
21
+ text-transform: uppercase;
22
+ }
23
+ .grid {
24
+ max-width: 960px;
25
+ }
26
+ .grid-item {
27
+ border: 1px solid #ccc;
28
+ display: inline-block;
29
+ padding: 10px 10px 5px;
30
+ position: relative;
31
+ margin: 5px;
32
+ }
33
+ .grid-item-details {
34
+ background-color: rgba(255, 255, 255, 0.9);
35
+ color: #333;
36
+ font-size: .8rem;
37
+ font-variant: small-caps;
38
+ height: 4rem;
39
+ left: 0;
40
+ line-height: 1.2rem;
41
+ opacity: 0;
42
+ padding: .2rem 0 10px;
43
+ position: absolute;
44
+ width: 100%;
45
+ bottom: 0;
46
+ text-align: center;
47
+ text-decoration: none;
48
+ }
49
+ .grid-item:hover .grid-item-details {
50
+ opacity: 1;
51
+ }
52
+ </style>
53
+ </head>
54
+ <body>
55
+ <header>
56
+ <h1>Images by (Unknown Make) Unknown Model @ ISO speed ratings unknown</h1>
57
+ <nav>
58
+
59
+ <a class="nav-link" href="../../index.html">Browse all the images</a>
60
+
61
+ <a class="nav-link" href="../../unknown_make/unknown_model.html">Browse all the Unknown Model images</a>
62
+
63
+ </nav>
64
+
65
+ </header>
66
+
67
+ <div class="grid">
68
+
69
+ <div class="grid-item">
70
+ <img alt="Image 26583" src="http://ih1.redbubble.net/work.26583.1.flat,135x135,075,f.jpg"/>
71
+
72
+ </div>
73
+
74
+ <div class="grid-item">
75
+ <img alt="Image 867035" src="http://ih1.redbubble.net/work.867035.1.flat,135x135,075,f.jpg"/>
76
+
77
+ </div>
78
+
79
+ </div>
80
+
81
+ </body>
82
+ </html>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: images_gallery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gonzalo Bulnes Guilpain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-27 00:00:00.000000000 Z
11
+ date: 2015-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: libxml-ruby
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: html-proofer
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: inch
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -151,9 +165,13 @@ files:
151
165
  - lib/images_gallery/version.rb
152
166
  - lib/images_gallery/views/base.rb
153
167
  - lib/images_gallery/views/index.rb
168
+ - lib/images_gallery/views/iso.rb
154
169
  - lib/images_gallery/views/make.rb
155
170
  - lib/images_gallery/views/model.rb
156
171
  - spec/features/index_page_spec.rb
172
+ - spec/features/iso_pages/canon_eos_20d_iso_100_page_spec.rb
173
+ - spec/features/iso_pages/lux_d_3_iso_100_page_spec.rb
174
+ - spec/features/iso_pages/lux_d_3_iso_200_page_spec.rb
157
175
  - spec/features/makes_pages/canon_page_spec.rb
158
176
  - spec/features/makes_pages/leica_page_spec.rb
159
177
  - spec/features/models_pages/canon_eos_20d_page_spec.rb
@@ -168,6 +186,7 @@ files:
168
186
  - spec/lib/images_gallery/models/source_spec.rb
169
187
  - spec/lib/images_gallery/views/base_spec.rb
170
188
  - spec/lib/images_gallery/views/index_spec.rb
189
+ - spec/lib/images_gallery/views/iso_spec.rb
171
190
  - spec/lib/images_gallery/views/make_spec.rb
172
191
  - spec/lib/images_gallery/views/model_spec.rb
173
192
  - spec/spec_helper.rb
@@ -177,26 +196,37 @@ files:
177
196
  - spec/support/spec_for_generator_interface.rb
178
197
  - spec/support/spec_for_image_interface.rb
179
198
  - spec/support/spec_for_images_gallery.rb
199
+ - spec/support/spec_for_iso_page.rb
180
200
  - spec/support/spec_for_make_page.rb
181
201
  - spec/support/spec_for_model_page.rb
182
202
  - spec/support/spec_for_parser_interface.rb
183
- - spec/support/spec_for_view_inerface.rb
203
+ - spec/support/spec_for_view_interface.rb
184
204
  - spec/tmp/canon.html
185
205
  - spec/tmp/canon/canon_eos_20d.html
206
+ - spec/tmp/canon/canon_eos_20d/100.html
186
207
  - spec/tmp/canon/canon_eos_400d_digital.html
208
+ - spec/tmp/canon/canon_eos_400d_digital/200.html
187
209
  - spec/tmp/fuji_photo_film_co_ltd.html
188
210
  - spec/tmp/fuji_photo_film_co_ltd/slp1000se.html
211
+ - spec/tmp/fuji_photo_film_co_ltd/slp1000se/speed_ratings_unknown.html
189
212
  - spec/tmp/fujifilm.html
190
213
  - spec/tmp/fujifilm/finepix_s6500fd.html
214
+ - spec/tmp/fujifilm/finepix_s6500fd/400.html
191
215
  - spec/tmp/index.html
192
216
  - spec/tmp/leica.html
193
217
  - spec/tmp/leica/d_lux_3.html
218
+ - spec/tmp/leica/d_lux_3/100.html
219
+ - spec/tmp/leica/d_lux_3/200.html
220
+ - spec/tmp/leica/d_lux_3/800.html
194
221
  - spec/tmp/nikon_corporation.html
195
222
  - spec/tmp/nikon_corporation/nikon_d80.html
223
+ - spec/tmp/nikon_corporation/nikon_d80/100.html
196
224
  - spec/tmp/panasonic.html
197
225
  - spec/tmp/panasonic/dmc_fz30.html
226
+ - spec/tmp/panasonic/dmc_fz30/80.html
198
227
  - spec/tmp/unknown_make.html
199
228
  - spec/tmp/unknown_make/unknown_model.html
229
+ - spec/tmp/unknown_make/unknown_model/speed_ratings_unknown.html
200
230
  homepage: https://github.com/gonzalo-bulnes/kata-images_gallery_generator
201
231
  licenses:
202
232
  - GPL-3.0
@@ -223,48 +253,63 @@ specification_version: 4
223
253
  summary: Generate efficient galleries of thumbnails from large XML representations
224
254
  of EXIF data.
225
255
  test_files:
226
- - spec/lib/images_gallery/generator_spec.rb
227
- - spec/lib/images_gallery/models/image_spec.rb
228
- - spec/lib/images_gallery/models/source_spec.rb
229
- - spec/lib/images_gallery/models/collection_spec.rb
230
- - spec/lib/images_gallery/cli_spec.rb
231
- - spec/lib/images_gallery/views/index_spec.rb
232
- - spec/lib/images_gallery/views/base_spec.rb
233
- - spec/lib/images_gallery/views/model_spec.rb
234
- - spec/lib/images_gallery/views/make_spec.rb
235
- - spec/features/index_page_spec.rb
236
- - spec/features/models_pages/canon_eos_20d_page_spec.rb
237
- - spec/features/models_pages/lux_d_3_page_spec.rb
238
- - spec/features/makes_pages/canon_page_spec.rb
239
- - spec/features/makes_pages/leica_page_spec.rb
240
256
  - spec/tmp/index.html
241
- - spec/tmp/unknown_make/unknown_model.html
242
- - spec/tmp/fuji_photo_film_co_ltd/slp1000se.html
243
- - spec/tmp/fuji_photo_film_co_ltd.html
244
- - spec/tmp/unknown_make.html
245
257
  - spec/tmp/fujifilm/finepix_s6500fd.html
246
- - spec/tmp/nikon_corporation/nikon_d80.html
258
+ - spec/tmp/fujifilm/finepix_s6500fd/400.html
259
+ - spec/tmp/leica/d_lux_3.html
260
+ - spec/tmp/leica/d_lux_3/800.html
261
+ - spec/tmp/leica/d_lux_3/100.html
262
+ - spec/tmp/leica/d_lux_3/200.html
263
+ - spec/tmp/nikon_corporation.html
264
+ - spec/tmp/fuji_photo_film_co_ltd/slp1000se/speed_ratings_unknown.html
265
+ - spec/tmp/fuji_photo_film_co_ltd/slp1000se.html
247
266
  - spec/tmp/fujifilm.html
267
+ - spec/tmp/panasonic/dmc_fz30/80.html
268
+ - spec/tmp/panasonic/dmc_fz30.html
269
+ - spec/tmp/unknown_make/unknown_model/speed_ratings_unknown.html
270
+ - spec/tmp/unknown_make/unknown_model.html
271
+ - spec/tmp/unknown_make.html
248
272
  - spec/tmp/leica.html
249
- - spec/tmp/nikon_corporation.html
273
+ - spec/tmp/nikon_corporation/nikon_d80/100.html
274
+ - spec/tmp/nikon_corporation/nikon_d80.html
275
+ - spec/tmp/panasonic.html
250
276
  - spec/tmp/canon.html
251
- - spec/tmp/panasonic/dmc_fz30.html
277
+ - spec/tmp/fuji_photo_film_co_ltd.html
278
+ - spec/tmp/canon/canon_eos_20d/100.html
252
279
  - spec/tmp/canon/canon_eos_400d_digital.html
253
280
  - spec/tmp/canon/canon_eos_20d.html
254
- - spec/tmp/leica/d_lux_3.html
255
- - spec/tmp/panasonic.html
256
- - spec/fixtures/output-template.html
257
- - spec/fixtures/works_large.xml
258
- - spec/fixtures/works.xml
281
+ - spec/tmp/canon/canon_eos_400d_digital/200.html
259
282
  - spec/spec_helper.rb
260
- - spec/support/spec_for_generator_interface.rb
283
+ - spec/support/spec_for_image_interface.rb
261
284
  - spec/support/spec_for_images_gallery.rb
262
- - spec/support/spec_for_model_page.rb
285
+ - spec/support/helpers.rb
263
286
  - spec/support/spec_for_collection_interface.rb
264
- - spec/support/spec_for_image_interface.rb
287
+ - spec/support/spec_for_make_page.rb
265
288
  - spec/support/spec_for_parser_interface.rb
289
+ - spec/support/spec_for_iso_page.rb
290
+ - spec/support/spec_for_model_page.rb
291
+ - spec/support/spec_for_view_interface.rb
292
+ - spec/support/spec_for_generator_interface.rb
266
293
  - spec/support/capybara.rb
267
- - spec/support/spec_for_make_page.rb
268
- - spec/support/spec_for_view_inerface.rb
269
- - spec/support/helpers.rb
294
+ - spec/fixtures/output-template.html
295
+ - spec/fixtures/works.xml
296
+ - spec/fixtures/works_large.xml
297
+ - spec/lib/images_gallery/models/image_spec.rb
298
+ - spec/lib/images_gallery/models/collection_spec.rb
299
+ - spec/lib/images_gallery/models/source_spec.rb
300
+ - spec/lib/images_gallery/generator_spec.rb
301
+ - spec/lib/images_gallery/cli_spec.rb
302
+ - spec/lib/images_gallery/views/model_spec.rb
303
+ - spec/lib/images_gallery/views/iso_spec.rb
304
+ - spec/lib/images_gallery/views/index_spec.rb
305
+ - spec/lib/images_gallery/views/make_spec.rb
306
+ - spec/lib/images_gallery/views/base_spec.rb
307
+ - spec/features/iso_pages/canon_eos_20d_iso_100_page_spec.rb
308
+ - spec/features/iso_pages/lux_d_3_iso_200_page_spec.rb
309
+ - spec/features/iso_pages/lux_d_3_iso_100_page_spec.rb
310
+ - spec/features/models_pages/lux_d_3_page_spec.rb
311
+ - spec/features/models_pages/canon_eos_20d_page_spec.rb
312
+ - spec/features/makes_pages/canon_page_spec.rb
313
+ - spec/features/makes_pages/leica_page_spec.rb
314
+ - spec/features/index_page_spec.rb
270
315
  has_rdoc: