libv8 3.3.10.2-x86-darwin-10

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.
@@ -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,4 @@
1
+ module Libv8
2
+ V8_VERSION = "3.3.10"
3
+ VERSION = V8_VERSION + ".2"
4
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: libv8
3
+ version: !ruby/object:Gem::Version
4
+ hash: 75
5
+ prerelease:
6
+ segments:
7
+ - 3
8
+ - 3
9
+ - 10
10
+ - 2
11
+ version: 3.3.10.2
12
+ platform: x86-darwin-10
13
+ authors:
14
+ - Logan Lowell
15
+ - Charles Lowell
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2011-05-31 00:00:00 -05:00
21
+ default_executable:
22
+ dependencies:
23
+ - !ruby/object:Gem::Dependency
24
+ prerelease: false
25
+ type: :development
26
+ requirement: &id001 !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - ~>
30
+ - !ruby/object:Gem::Version
31
+ hash: 49
32
+ segments:
33
+ - 0
34
+ - 8
35
+ - 7
36
+ version: 0.8.7
37
+ name: rake
38
+ version_requirements: *id001
39
+ - !ruby/object:Gem::Dependency
40
+ prerelease: false
41
+ type: :development
42
+ requirement: &id002 !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ hash: 3
48
+ segments:
49
+ - 0
50
+ version: "0"
51
+ name: bundler
52
+ version_requirements: *id002
53
+ description: Distributes the V8 JavaScript engine in binary and source forms in order to support fast builds of The Ruby Racer
54
+ email:
55
+ - fractaloop@thefrontside.net
56
+ - cowboyd@thefrontside.net
57
+ executables: []
58
+
59
+ extensions: []
60
+
61
+ extra_rdoc_files: []
62
+
63
+ files:
64
+ - lib/libv8.rb
65
+ - lib/libv8/version.rb
66
+ - lib/libv8/v8/include/v8-debug.h
67
+ - lib/libv8/v8/include/v8-preparser.h
68
+ - lib/libv8/v8/include/v8-profiler.h
69
+ - lib/libv8/v8/include/v8-testing.h
70
+ - lib/libv8/v8/include/v8.h
71
+ - lib/libv8/v8/include/v8stdint.h
72
+ - lib/libv8/build/v8/libv8.a
73
+ - lib/libv8/build/v8/libv8preparser.a
74
+ has_rdoc: true
75
+ homepage: http://github.com/fractaloop/libv8
76
+ licenses: []
77
+
78
+ post_install_message:
79
+ rdoc_options: []
80
+
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ hash: 3
89
+ segments:
90
+ - 0
91
+ version: "0"
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ none: false
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ hash: 3
98
+ segments:
99
+ - 0
100
+ version: "0"
101
+ requirements: []
102
+
103
+ rubyforge_project: libv8
104
+ rubygems_version: 1.6.1
105
+ signing_key:
106
+ specification_version: 3
107
+ summary: Distribution of the V8 JavaScript engine
108
+ test_files: []
109
+