debugger-ruby_core_source 1.1.7 → 1.1.8

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.
Files changed (48) hide show
  1. data/CHANGELOG.md +4 -0
  2. data/Rakefile +2 -1
  3. data/debugger-ruby_core_source.gemspec +2 -1
  4. data/lib/debugger/ruby_core_source.rb +4 -1
  5. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/addr2line.h +21 -0
  6. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/constant.h +34 -0
  7. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/debug.h +41 -0
  8. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/dln.h +50 -0
  9. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/encdb.h +167 -0
  10. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/eval_intern.h +234 -0
  11. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/gc.h +99 -0
  12. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/id.h +175 -0
  13. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/insns.inc +179 -0
  14. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/insns_info.inc +695 -0
  15. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/internal.h +239 -0
  16. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/iseq.h +126 -0
  17. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/known_errors.inc +731 -0
  18. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/method.h +105 -0
  19. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/node.h +503 -0
  20. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/node_name.inc +208 -0
  21. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/opt_sc.inc +670 -0
  22. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/optinsn.inc +30 -0
  23. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/optunifs.inc +116 -0
  24. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/parse.h +302 -0
  25. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/regenc.h +219 -0
  26. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/regint.h +850 -0
  27. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/regparse.h +362 -0
  28. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/revision.h +1 -0
  29. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/ruby_atomic.h +115 -0
  30. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/siphash.h +48 -0
  31. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/thread_pthread.h +51 -0
  32. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/thread_win32.h +40 -0
  33. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/timev.h +21 -0
  34. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/transcode_data.h +117 -0
  35. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/transdb.h +189 -0
  36. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/version.h +52 -0
  37. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm.inc +3054 -0
  38. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm_core.h +763 -0
  39. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm_exec.h +184 -0
  40. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm_insnhelper.h +220 -0
  41. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm_opts.h +51 -0
  42. data/lib/debugger/ruby_core_source/ruby-1.9.3-p385/vmtc.inc +97 -0
  43. data/lib/debugger/ruby_core_source/version.rb +1 -1
  44. metadata +407 -372
  45. data/LEGAL +0 -534
  46. data/LICENSE.txt +0 -22
  47. data/OLD_README +0 -29
  48. data/RUBY_LICENSE +0 -56
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- The MIT LICENSE
2
-
3
- Copyright (c) 2012 Gabriel Horner
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/OLD_README DELETED
@@ -1,29 +0,0 @@
1
- Retrieve ruby core source files.
2
-
3
- This can be used by any C extension gem that needs Ruby core headers (*.h and *.inc)
4
-
5
- Usage:
6
-
7
- Ruby_core_source::create_makefile_with_core(hdr_check_proc, gem_name)
8
- takes the place of
9
- create_makefile(gem_name)
10
- in your extconf.rb
11
-
12
- This will:
13
- If hdr_check_proc is true, call create_makefile(gem_name)
14
- Else: if core headers already exist, and hdr_check_proc is true, call create_makefile(gem_name)
15
- Else: fetch and extract the core headers, check hdr_check_proc, and call create_makefile(gem_name)
16
- Else: return false
17
-
18
- Note that for Ruby preview releases, the corresponding RUBY_REVISION needs to be maintained in
19
- http://cloud.github.com/downloads/mark-moseley/ruby_core_source/preview_revision.yml
20
-
21
- Example use in extconf.rb:
22
-
23
- require 'ruby_core_source'
24
- hdrs = proc { have_header("vm_core.h") and have_header("iseq.h") }
25
- dir_config("ruby") # allow user to pass in non-standard core include directory
26
- if !Ruby_core_source::create_makefile_with_core(hdrs, "foo")
27
- # error
28
- exit(1)
29
- end
data/RUBY_LICENSE DELETED
@@ -1,56 +0,0 @@
1
- Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
2
- You can redistribute it and/or modify it under either the terms of the
3
- 2-clause BSDL (see the file BSDL), or the conditions below:
4
-
5
- 1. You may make and give away verbatim copies of the source form of the
6
- software without restriction, provided that you duplicate all of the
7
- original copyright notices and associated disclaimers.
8
-
9
- 2. You may modify your copy of the software in any way, provided that
10
- you do at least ONE of the following:
11
-
12
- a) place your modifications in the Public Domain or otherwise
13
- make them Freely Available, such as by posting said
14
- modifications to Usenet or an equivalent medium, or by allowing
15
- the author to include your modifications in the software.
16
-
17
- b) use the modified software only within your corporation or
18
- organization.
19
-
20
- c) give non-standard binaries non-standard names, with
21
- instructions on where to get the original software distribution.
22
-
23
- d) make other distribution arrangements with the author.
24
-
25
- 3. You may distribute the software in object code or binary form,
26
- provided that you do at least ONE of the following:
27
-
28
- a) distribute the binaries and library files of the software,
29
- together with instructions (in the manual page or equivalent)
30
- on where to get the original distribution.
31
-
32
- b) accompany the distribution with the machine-readable source of
33
- the software.
34
-
35
- c) give non-standard binaries non-standard names, with
36
- instructions on where to get the original software distribution.
37
-
38
- d) make other distribution arrangements with the author.
39
-
40
- 4. You may modify and include the part of the software into any other
41
- software (possibly commercial). But some files in the distribution
42
- are not written by the author, so that they are not under these terms.
43
-
44
- For the list of those files and their copying conditions, see the
45
- file LEGAL.
46
-
47
- 5. The scripts and library files supplied as input to or produced as
48
- output from the software do not automatically fall under the
49
- copyright of the software, but belong to whomever generated them,
50
- and may be sold commercially, and may be aggregated with this
51
- software.
52
-
53
- 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
54
- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
55
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
56
- PURPOSE.