v8eval 0.2.2 → 0.2.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.
data/src/v8eval_go.cxx ADDED
@@ -0,0 +1,9 @@
1
+ #include "v8eval_go.h"
2
+
3
+ namespace v8eval {
4
+
5
+ _GoV8::_GoV8() {}
6
+
7
+ _GoV8::~_GoV8() {}
8
+
9
+ } // namespace v8eval
data/src/v8eval_go.h ADDED
@@ -0,0 +1,16 @@
1
+ #ifndef V8EVAL_GO_H_
2
+ #define V8EVAL_GO_H_
3
+
4
+ #include "v8eval.h"
5
+
6
+ namespace v8eval {
7
+
8
+ class _GoV8 : public _V8 {
9
+ public:
10
+ _GoV8();
11
+ virtual ~_GoV8();
12
+ };
13
+
14
+ } // namespace v8eval
15
+
16
+ #endif // V8EVAL_GO_H_
@@ -0,0 +1,9 @@
1
+ #include "v8eval_python.h"
2
+
3
+ namespace v8eval {
4
+
5
+ _PythonV8::_PythonV8() {}
6
+
7
+ _PythonV8::~_PythonV8() {}
8
+
9
+ } // namespace v8eval
@@ -0,0 +1,16 @@
1
+ #ifndef V8EVAL_PYTHON_H_
2
+ #define V8EVAL_PYTHON_H_
3
+
4
+ #include "v8eval.h"
5
+
6
+ namespace v8eval {
7
+
8
+ class _PythonV8 : public _V8 {
9
+ public:
10
+ _PythonV8();
11
+ virtual ~_PythonV8();
12
+ };
13
+
14
+ } // namespace v8eval
15
+
16
+ #endif // V8EVAL_PYTHON_H_
@@ -0,0 +1,9 @@
1
+ #include "v8eval_ruby.h"
2
+
3
+ namespace v8eval {
4
+
5
+ _RubyV8::_RubyV8() {}
6
+
7
+ _RubyV8::~_RubyV8() {}
8
+
9
+ } // namespace v8eval
data/src/v8eval_ruby.h ADDED
@@ -0,0 +1,16 @@
1
+ #ifndef V8EVAL_RUBY_H_
2
+ #define V8EVAL_RUBY_H_
3
+
4
+ #include "v8eval.h"
5
+
6
+ namespace v8eval {
7
+
8
+ class _RubyV8 : public _V8 {
9
+ public:
10
+ _RubyV8();
11
+ virtual ~_RubyV8();
12
+ };
13
+
14
+ } // namespace v8eval
15
+
16
+ #endif // V8EVAL_RUBY_H_
data/v8eval.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new 'v8eval', '1.0' do |s|
2
2
  s.name = 'v8eval'
3
- s.version = '0.2.2'
3
+ s.version = '0.2.3'
4
4
  s.licenses = ['MIT']
5
5
  s.description = 'Run JavaScript engine V8 in Ruby'
6
6
  s.summary = 'v8eval gem is ruby binding to the latest V8 4.7 and supports
metadata CHANGED
@@ -1,47 +1,47 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: v8eval
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prateek Papriwal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-18 00:00:00.000000000 Z
11
+ date: 2016-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '10.4'
20
- - - '>='
20
+ - - ">="
21
21
  - !ruby/object:Gem::Version
22
22
  version: 10.4.2
23
23
  type: :development
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - ~>
27
+ - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: '10.4'
30
- - - '>='
30
+ - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 10.4.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rspec
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - ~>
37
+ - - "~>"
38
38
  - !ruby/object:Gem::Version
39
39
  version: '3.0'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - ~>
44
+ - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '3.0'
47
47
  - !ruby/object:Gem::Dependency
@@ -74,15 +74,28 @@ files:
74
74
  - ruby/Rakefile
75
75
  - ruby/build.sh
76
76
  - ruby/example/js_add.rb
77
+ - ruby/ext/v8eval/Makefile
77
78
  - ruby/ext/v8eval/extconf.rb
79
+ - ruby/ext/v8eval/v8eval.h
80
+ - ruby/ext/v8eval/v8eval.i
81
+ - ruby/ext/v8eval/v8eval_wrap.cxx
78
82
  - ruby/lib/setup/extension_builder.rb
79
83
  - ruby/lib/v8eval.rb
84
+ - ruby/lib/v8eval/Makefile
85
+ - ruby/lib/v8eval/extconf.rb
86
+ - ruby/lib/v8eval/v8eval.h
87
+ - ruby/lib/v8eval/v8eval_wrap.cxx
80
88
  - ruby/spec/v8eval_spec.rb
81
89
  - src/dbgsrv.cxx
82
90
  - src/dbgsrv.h
83
91
  - src/v8eval.cxx
84
92
  - src/v8eval.h
85
- - src/v8eval.i
93
+ - src/v8eval_go.cxx
94
+ - src/v8eval_go.h
95
+ - src/v8eval_python.cxx
96
+ - src/v8eval_python.h
97
+ - src/v8eval_ruby.cxx
98
+ - src/v8eval_ruby.h
86
99
  - v8eval.gemspec
87
100
  homepage: https://github.com/sony/v8eval
88
101
  licenses:
@@ -95,17 +108,17 @@ require_paths:
95
108
  - ruby/ext
96
109
  required_ruby_version: !ruby/object:Gem::Requirement
97
110
  requirements:
98
- - - '>='
111
+ - - ">="
99
112
  - !ruby/object:Gem::Version
100
113
  version: 2.0.0
101
114
  required_rubygems_version: !ruby/object:Gem::Requirement
102
115
  requirements:
103
- - - '>='
116
+ - - ">="
104
117
  - !ruby/object:Gem::Version
105
118
  version: '0'
106
119
  requirements: []
107
120
  rubyforge_project:
108
- rubygems_version: 2.2.2
121
+ rubygems_version: 2.5.1
109
122
  signing_key:
110
123
  specification_version: 4
111
124
  summary: v8eval gem is ruby binding to the latest V8 4.7 and supports Linux and Mac