brianmario-yajl-ruby 0.4.7 → 0.4.8

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.
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,8 @@
1
1
  = Changelog
2
2
 
3
+ 0.4.8 (May 18th, 2009)
4
+ * fixed a totally bone-head compilation problem, I created for myself ;)
5
+
3
6
  0.4.7 (May 18th, 2009)
4
7
  * Bundling Yajl sources to remove the need to install them (and CMake) separately (Thank you Lloyd!!!)
5
8
  This means you can now simply install the gem and be off and running
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 4
3
- :patch: 7
3
+ :patch: 8
4
4
  :major: 0
data/ext/api/yajl_gen.h CHANGED
@@ -35,7 +35,7 @@
35
35
  * Interface to YAJL's JSON generation facilities.
36
36
  */
37
37
 
38
- #include <yajl/yajl_common.h>
38
+ #include "api/yajl_common.h"
39
39
 
40
40
  #ifndef __YAJL_GEN_H__
41
41
  #define __YAJL_GEN_H__
data/ext/api/yajl_parse.h CHANGED
@@ -35,7 +35,7 @@
35
35
  * Interface to YAJL's JSON parsing facilities.
36
36
  */
37
37
 
38
- #include <yajl/yajl_common.h>
38
+ #include "api/yajl_common.h"
39
39
 
40
40
  #ifndef __YAJL_PARSE_H__
41
41
  #define __YAJL_PARSE_H__
data/lib/yajl.rb CHANGED
@@ -13,7 +13,7 @@ require 'yajl_ext'
13
13
  #
14
14
  # Ruby bindings to the excellent Yajl (Yet Another JSON Parser) ANSI C library.
15
15
  module Yajl
16
- VERSION = "0.4.7"
16
+ VERSION = "0.4.8"
17
17
 
18
18
  # == Yajl::Chunked
19
19
  #
data/yajl-ruby.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{yajl-ruby}
5
- s.version = "0.4.7"
5
+ s.version = "0.4.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Brian Lopez", "Lloyd Hilaiel"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brianmario-yajl-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Lopez