edn_turbo 0.3.2 → 0.3.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.
@@ -3,6 +3,8 @@
3
3
  #include <vector>
4
4
  #include <exception>
5
5
 
6
+ #include <cstring>
7
+
6
8
  #include "edn_parser.h"
7
9
 
8
10
  //
@@ -5,6 +5,9 @@
5
5
  #include <limits>
6
6
  #include <exception>
7
7
 
8
+ #include <cstring>
9
+ #include <stdexcept>
10
+
8
11
  #include <ruby/ruby.h>
9
12
  #include <ruby/encoding.h>
10
13
 
@@ -11,16 +11,14 @@ LIB_DIRS = [
11
11
  '/usr/local/opt/icu4c/lib'
12
12
  ]
13
13
 
14
- unless find_header('unicode/uversion.h', *HEADER_DIRS)
14
+ dir_config('edn_ext', HEADER_DIRS, LIB_DIRS)
15
+
16
+ unless find_header('unicode/uversion.h')
15
17
  abort "icu4c headers missing"
16
18
  end
17
19
 
18
- # haven't figured out how this ever works so..
19
- #unless have_library('icuuc', 'uconv_close', *LIB_DIRS)
20
- # abort "ic4c lib missing"
21
- #end
22
-
23
- # do this instead. sigh
24
- $LOCAL_LIBS="-L#{LIB_DIRS[1]} -licuuc"
20
+ unless have_library('icuuc')
21
+ abort "ic4c lib missing"
22
+ end
25
23
 
26
24
  create_makefile("edn_turbo/edn_turbo")
@@ -2,6 +2,8 @@
2
2
  #include <iostream>
3
3
  #include <clocale>
4
4
 
5
+ #include <cstring>
6
+
5
7
  #include "edn_parser.h"
6
8
 
7
9
  #include <ruby/ruby.h>
@@ -27,18 +29,16 @@ namespace edn {
27
29
 
28
30
  //
29
31
  // wrappers to hook the class w/ the C-api
30
- template<class T>
31
- static void delete_obj(T *ptr) {
32
+ static void delete_parser(edn::Parser *ptr) {
32
33
  delete ptr;
33
34
  }
34
35
 
35
- template<class T>
36
- static VALUE wrap_ptr(VALUE klass, T* ptr) {
37
- return Data_Wrap_Struct(klass, 0, delete_obj<T>, ptr);
36
+ static VALUE wrap_parser_ptr(VALUE klass, edn::Parser* ptr) {
37
+ return Data_Wrap_Struct(klass, 0, delete_parser, ptr);
38
38
  }
39
39
 
40
40
  static VALUE alloc_obj(VALUE self){
41
- return wrap_ptr<edn::Parser>(self, new Parser());
41
+ return wrap_parser_ptr(self, new Parser());
42
42
  }
43
43
 
44
44
  static inline Parser* get_parser(VALUE self)
@@ -1,4 +1,4 @@
1
1
  module EDNT
2
- VERSION = '0.3.2'
3
- RELEASE_DATE = %q{2015-06-29}
2
+ VERSION = '0.3.3'
3
+ RELEASE_DATE = %q{2015-07-07}
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: edn_turbo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ed Porras
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-29 00:00:00.000000000 Z
11
+ date: 2015-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: edn