hybook 0.0.2 → 0.0.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.
@@ -5,11 +5,13 @@ module HyBook
5
5
 
6
6
  def render_pictures( pics, opts )
7
7
  buf = ''
8
- buf << 'I ' # NOTE: cannot use | used by markdown for tables (or just escape???)
9
- pics.each do |pic|
8
+
9
+ ### sort by title for now
10
+ pics.sort { |l,r| l.title <=> r.title }.each_with_index do |pic,i|
11
+ buf << ' • ' if i > 0
10
12
  buf << render_picture( pic, opts )
11
- buf << ' I '
12
13
  end
14
+
13
15
  buf
14
16
  end
15
17
 
@@ -1,6 +1,6 @@
1
1
 
2
2
  module HyBook
3
- VERSION = '0.0.2'
3
+ VERSION = '0.0.3'
4
4
  end
5
5
 
6
6
 
data/templates/album.md CHANGED
@@ -3,7 +3,8 @@
3
3
 
4
4
  {% album.sections.each do |section| %}
5
5
 
6
- #### {{ section.title }} ({{ section.pictures.size }})
6
+ #### {{ section.title }} _({{ section.pictures.size }})_{: .count}
7
7
 
8
8
  {{ render_pictures( section.pictures, opts ) }}
9
+
9
10
  {% end %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hybook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2014-02-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rdoc
16
- requirement: &21453732 !ruby/object:Gem::Requirement
16
+ requirement: &20730744 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '4.0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *21453732
24
+ version_requirements: *20730744
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: hoe
27
- requirement: &21453348 !ruby/object:Gem::Requirement
27
+ requirement: &20730216 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '3.7'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *21453348
35
+ version_requirements: *20730216
36
36
  description: hybook - hypertext book generator
37
37
  email: webslideshow@googlegroups.com
38
38
  executables: []