n3bulous-infuse 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -37,7 +37,7 @@ slide "Who is this Guy?", <<_EOS
37
37
  * Name: Kevin McFadden
38
38
  * Current: Concepts Ahead
39
39
  * Past: Director of Technology @ Viget Labs IN D.C.
40
- * Other projects found on "Github":https://github.com/n3bulous/.
40
+ * Other projects found on "Github":http://github.com/n3bulous/.
41
41
  _EOS
42
42
  </pre>
43
43
 
@@ -46,8 +46,10 @@ h2. Future
46
46
  * Add cli help and options
47
47
  * Support external resources (images, ...)
48
48
  * Figure out why my redcloth dependency check fails.
49
+ * Syntax highlighting
49
50
  * Support TextMate
50
51
  * Support Rakefile
52
+ * Tests for included code
51
53
  * Support Markdown
52
54
  * Custom theme support
53
55
  * Code formatting
@@ -60,7 +62,17 @@ h2. Useful Info
60
62
 
61
63
  h2. Inspiration
62
64
 
63
- Infuse was born out of getting caught up in the look of slide show presentations with Keynote, and out of the frustration of "codex's":http://github.com/pragdave/codex complicated process.
65
+ Infuse was born out of productivity hiccups experienced while designing the slide show look and feel in Keynote instead of writing the actual presentation. Dave Thomas produced codex, but I felt I was jumping through some unnecessary hoops with it, and I wanted to support custom themes, all while streamlining the process.
66
+
67
+ h2. References
68
+
69
+ * "s6":http://github.com/geraldb/s6/tree/master
70
+ * "codex":http://github.com/pragdave/codex
71
+ * "Dave Thomas' _Our take on presenting code_":
72
+
73
+ h2. Thanks
74
+
75
+ * "Simple Gem":http://github.com/reagent/simple-gem/tree/master by Patrick Reagan.
64
76
 
65
77
  h2. License
66
78
 
data/lib/infuse.rb CHANGED
@@ -4,6 +4,7 @@ INFUSE_EXTENSION = "infuse"
4
4
 
5
5
  require 'rubygems'
6
6
  require 'redcloth'
7
+ require 'erb'
7
8
 
8
9
  require 'infuse/version'
9
10
  require 'infuse/infuse_dsl'
@@ -3,7 +3,7 @@ module Infuse
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 9
6
- TINY = 0
6
+ TINY = 1
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.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin McFadden