manalang-bdoc 0.1.2 → 0.1.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.
Files changed (4) hide show
  1. data/History.txt +6 -0
  2. data/bin/bdoc +1 -1
  3. data/lib/bdoc.rb +1 -1
  4. metadata +1 -1
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.1.3 2009-03-30
2
+
3
+ * 2 bug fix:
4
+ * require json/pure instead of native json parser
5
+ * changed require statement in bin file
6
+
1
7
  == 0.1.2 2009-03-30
2
8
 
3
9
  * 1 bug fix:
data/bin/bdoc CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'lib/bdoc'
3
+ require File.dirname(__FILE__) + '/../lib/bdoc'
4
4
  Bdoc.open
data/lib/bdoc.rb CHANGED
@@ -5,7 +5,7 @@ require 'rubygems'
5
5
  require 'erb'
6
6
  require 'tmpdir'
7
7
  require 'launchy'
8
- require 'json'
8
+ require 'json/pure'
9
9
 
10
10
  module Bdoc
11
11
  VERSION = '0.1.2'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manalang-bdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rich Manalang