bdoc 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/History.txt +5 -0
  2. data/lib/bdoc.rb +2 -2
  3. metadata +3 -3
@@ -1,3 +1,8 @@
1
+ == 0.3.5 2011-03-14
2
+
3
+ * 1 bug fix
4
+ * windows fix from nashby (thx!)
5
+
1
6
  == 0.3.4 2011-03-14
2
7
 
3
8
  * 1 bug fix
@@ -14,7 +14,7 @@ else
14
14
  end
15
15
 
16
16
  module Bdoc
17
- VERSION = '0.3.4'
17
+ VERSION = '0.3.5'
18
18
 
19
19
  class << self
20
20
  attr_accessor :output_dir
@@ -56,7 +56,7 @@ module Bdoc
56
56
 
57
57
  index = ERB.new(File.read(File.join(File.dirname(__FILE__), '..', "templates","bdoc.html"))).result(binding)
58
58
  Dir.mkdir(output_dir) unless File.exists?(output_dir)
59
- File.open(output_index,"w") {|f| f.write(index)}
59
+ File.open(output_index,"w:UTF-8") {|f| f.write(index)}
60
60
  end
61
61
 
62
62
  def open
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bdoc
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 4
10
- version: 0.3.4
9
+ - 5
10
+ version: 0.3.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Rich Manalang