libv8 3.3.10.4-x86-darwin-11

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,53 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ // Load definitions of standard types.
29
+
30
+ #ifndef V8STDINT_H_
31
+ #define V8STDINT_H_
32
+
33
+ #include <stdio.h>
34
+
35
+ #if defined(_WIN32) && !defined(__MINGW32__)
36
+
37
+ typedef signed char int8_t;
38
+ typedef unsigned char uint8_t;
39
+ typedef short int16_t; // NOLINT
40
+ typedef unsigned short uint16_t; // NOLINT
41
+ typedef int int32_t;
42
+ typedef unsigned int uint32_t;
43
+ typedef __int64 int64_t;
44
+ typedef unsigned __int64 uint64_t;
45
+ // intptr_t and friends are defined in crtdefs.h through stdio.h.
46
+
47
+ #else
48
+
49
+ #include <stdint.h>
50
+
51
+ #endif
52
+
53
+ #endif // V8STDINT_H_
@@ -0,0 +1,6 @@
1
+ module Libv8
2
+ version_file = File.join(File.dirname(__FILE__), 'VERSION')
3
+ V8_VERSION = File.exist?(version_file) ? File.read(version_file).chomp : "0.0"
4
+ REVISION = ".4"
5
+ VERSION = V8_VERSION + REVISION
6
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: libv8
3
+ version: !ruby/object:Gem::Version
4
+ hash: 71
5
+ prerelease:
6
+ segments:
7
+ - 3
8
+ - 3
9
+ - 10
10
+ - 4
11
+ version: 3.3.10.4
12
+ platform: x86-darwin-11
13
+ authors:
14
+ - Logan Lowell
15
+ - Charles Lowell
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2011-11-17 00:00:00 Z
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ version_requirements: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 63
29
+ segments:
30
+ - 0
31
+ - 9
32
+ - 2
33
+ version: 0.9.2
34
+ name: rake
35
+ prerelease: false
36
+ type: :development
37
+ requirement: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ version_requirements: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ hash: 3
45
+ segments:
46
+ - 0
47
+ version: "0"
48
+ name: bundler
49
+ prerelease: false
50
+ type: :development
51
+ requirement: *id002
52
+ description: Distributes the V8 JavaScript engine in binary and source forms in order to support fast builds of The Ruby Racer
53
+ email:
54
+ - fractaloop@thefrontside.net
55
+ - cowboyd@thefrontside.net
56
+ executables: []
57
+
58
+ extensions: []
59
+
60
+ extra_rdoc_files: []
61
+
62
+ files:
63
+ - lib/libv8.rb
64
+ - lib/libv8/version.rb
65
+ - lib/libv8/v8/include/v8-debug.h
66
+ - lib/libv8/v8/include/v8-preparser.h
67
+ - lib/libv8/v8/include/v8-profiler.h
68
+ - lib/libv8/v8/include/v8-testing.h
69
+ - lib/libv8/v8/include/v8.h
70
+ - lib/libv8/v8/include/v8stdint.h
71
+ - lib/libv8/build/v8/libv8.a
72
+ - lib/libv8/build/v8/libv8preparser.a
73
+ homepage: http://github.com/fractaloop/libv8
74
+ licenses: []
75
+
76
+ post_install_message:
77
+ rdoc_options: []
78
+
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ hash: 3
87
+ segments:
88
+ - 0
89
+ version: "0"
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ none: false
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ hash: 3
96
+ segments:
97
+ - 0
98
+ version: "0"
99
+ requirements: []
100
+
101
+ rubyforge_project: libv8
102
+ rubygems_version: 1.8.11
103
+ signing_key:
104
+ specification_version: 3
105
+ summary: Distribution of the V8 JavaScript engine
106
+ test_files: []
107
+