Add extension "tox"
This commit is contained in:
parent
a46a47aae7
commit
baed2f8618
2 changed files with 14 additions and 0 deletions
7
ext/tox/extconf.rb
Executable file
7
ext/tox/extconf.rb
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
require 'mkmf'
|
||||
|
||||
NAME = 'tox'
|
||||
|
||||
create_makefile "#{NAME}/#{NAME}"
|
7
ext/tox/tox.c
Normal file
7
ext/tox/tox.c
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include <ruby.h>
|
||||
|
||||
void Init_tox();
|
||||
|
||||
void Init_tox()
|
||||
{
|
||||
}
|
Reference in a new issue