ruby_core_source 0.1.4 → 0.1.5
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/LICENSE +23 -0
- data/README +1 -0
- metadata +27 -9
data/LICENSE
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
Copyright (C) 2011 Mark Moseley <mark@fast-software.com>
|
2
|
+
All rights reserved.
|
3
|
+
*
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions
|
6
|
+
are met:
|
7
|
+
1. Redistributions of source code must retain the above copyright
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
9
|
+
2. Redistributions in binary form must reproduce the above copyright
|
10
|
+
notice, this list of conditions and the following disclaimer in the
|
11
|
+
documentation and/or other materials provided with the distribution.
|
12
|
+
*
|
13
|
+
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
14
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
15
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
16
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
17
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
18
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
19
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
20
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
21
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
22
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
23
|
+
SUCH DAMAGE.
|
data/README
CHANGED
@@ -20,6 +20,7 @@ http://cloud.github.com/downloads/mark-moseley/ruby_core_source/preview_revision
|
|
20
20
|
|
21
21
|
Example use in extconf.rb:
|
22
22
|
|
23
|
+
require 'ruby_core_source'
|
23
24
|
hdrs = proc { have_header("vm_core.h") and have_header("iseq.h") }
|
24
25
|
dir_config("ruby") # allow user to pass in non-standard core include directory
|
25
26
|
if !Ruby_core_source::create_makefile_with_core(hdrs, "foo")
|
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_core_source
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
- 5
|
9
|
+
version: 0.1.5
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Mark Moseley
|
@@ -9,19 +14,24 @@ autorequire:
|
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date:
|
17
|
+
date: 2011-04-02 00:00:00 -08:00
|
13
18
|
default_executable:
|
14
19
|
dependencies:
|
15
20
|
- !ruby/object:Gem::Dependency
|
16
21
|
name: archive-tar-minitar
|
17
|
-
|
18
|
-
|
19
|
-
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
20
25
|
requirements:
|
21
26
|
- - ">="
|
22
27
|
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 5
|
31
|
+
- 2
|
23
32
|
version: 0.5.2
|
24
|
-
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
25
35
|
description: Retrieve Ruby core source files
|
26
36
|
email: mark@fast-software.com
|
27
37
|
executables: []
|
@@ -29,6 +39,7 @@ executables: []
|
|
29
39
|
extensions: []
|
30
40
|
|
31
41
|
extra_rdoc_files:
|
42
|
+
- LICENSE
|
32
43
|
- README
|
33
44
|
- lib/ruby_core_source.rb
|
34
45
|
files:
|
@@ -36,6 +47,7 @@ files:
|
|
36
47
|
- lib/ruby_core_source.rb
|
37
48
|
- lib/contrib/uri_ext.rb
|
38
49
|
- lib/contrib/progressbar.rb
|
50
|
+
- LICENSE
|
39
51
|
has_rdoc: true
|
40
52
|
homepage: http://github.com/mark-moseley/ruby_core_source
|
41
53
|
licenses: []
|
@@ -46,21 +58,27 @@ rdoc_options:
|
|
46
58
|
require_paths:
|
47
59
|
- lib
|
48
60
|
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
49
62
|
requirements:
|
50
63
|
- - ">="
|
51
64
|
- !ruby/object:Gem::Version
|
65
|
+
segments:
|
66
|
+
- 1
|
67
|
+
- 8
|
68
|
+
- 2
|
52
69
|
version: 1.8.2
|
53
|
-
version:
|
54
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
55
72
|
requirements:
|
56
73
|
- - ">="
|
57
74
|
- !ruby/object:Gem::Version
|
75
|
+
segments:
|
76
|
+
- 0
|
58
77
|
version: "0"
|
59
|
-
version:
|
60
78
|
requirements: []
|
61
79
|
|
62
80
|
rubyforge_project:
|
63
|
-
rubygems_version: 1.3.
|
81
|
+
rubygems_version: 1.3.7
|
64
82
|
signing_key:
|
65
83
|
specification_version: 3
|
66
84
|
summary: Retrieve Ruby core source files
|