n3bulous-infuse 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -4,9 +4,16 @@ h2. Description
4
4
 
5
5
  Create HTML slide shows with a simple DSL.
6
6
 
7
+ h2. Requirements
8
+
9
+ * redcloth
10
+ * actionpack
11
+
7
12
  h2. Installation
8
13
 
9
14
  <pre>
15
+ sudo gem install redcloth
16
+ sudo gem install actionpack
10
17
  sudo gem install n3bulous-infuse --source=http://gems.github.com
11
18
  </pre>
12
19
 
@@ -52,3 +52,7 @@ div#header, div#footer {
52
52
  .title-slide h1 { font-size: 4em; }
53
53
  .title-slide h2 { font-size: 3em; }
54
54
  .title-slide h3 { font-size: 2em; }
55
+
56
+ .notes {
57
+ display: none;
58
+ }
@@ -3,10 +3,8 @@
3
3
 
4
4
  <%= @content %>
5
5
 
6
- <% if @notes.length > 0 %>
7
- <!-- NOTES
6
+ <div class="notes">
8
7
  <%= @notes %>
9
- -->
10
- <% end %>
8
+ </div>
11
9
  </div>
12
10
 
@@ -3,7 +3,7 @@ module Infuse
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 9
6
- TINY = 3
6
+ TINY = 4
7
7
 
8
8
  def self.to_s # :nodoc:
9
9
  [MAJOR, MINOR, TINY].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: n3bulous-infuse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3
4
+ version: 0.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin McFadden