Sha256: 4746dbdb289c7a3dc36b6cd20f5c7ee768122992d4c0cb64b87aa5e16c91639d

Contents?: true

Size: 856 Bytes

Versions: 5

Compression:

Stored size: 856 Bytes

Contents

## Description
Fork of [ruby\_core\_source](https://github.com/mark-moseley/ruby_core_source)
that uses included Ruby headers (\*.h and \*.inc) instead of downloading
them. Used by [debugger](http://github.com/cldwalker/debugger).

##Usage

Example use in extconf.rb:

```ruby
require 'ruby_core_source'
hdrs = proc { have_header("vm_core.h") and have_header("iseq.h") }
dir_config("ruby") # allow user to pass in non-standard core include directory
if !Ruby_core_source::create_makefile_with_core(hdrs, "foo")
  # error
  exit(1)
end
```

To add another ruby version's source to this gem's directory:

    $ rake add_source VERSION=1.9.3-p0

## LICENSE
Ruby library code is MIT license, see LICENSE.txt.  Included ruby headers,
lib/debugger/ruby\_core\_source/, are mostly Ruby license, see RUBY\_LICENSE. Some headers have
their own licenses, see LEGAL.

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
debugger-ruby_core_source-1.1.2 README.md
debugger-ruby_core_source-1.1.1 README.md
debugger-ruby_core_source-1.1.0 README.md
debugger-ruby_core_source-1.0.1 README.md
debugger-ruby_core_source-1.0.0 README.md