public
Description: LLVM bindings for Ruby
Homepage: http://llvmruby.org
Clone URL: git://github.com/tombagby/llvmruby.git
llvmruby / llvmruby.gemspec
100644 49 lines (47 sloc) 1.449 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
spec = Gem::Specification.new do |s|
    s.platform = Gem::Platform::RUBY
    s.name = "llvmruby"
    s.version = "0.0.6" # Can't require version file on Github
    s.summary = "Ruby bindings to LLVM"
    s.authors = [ "Thomas Bagby", "Christian Plessl" ]
    s.email = [ "tomatobagby@gmail.com", "christian@plesslweb.ch" ]
    s.files = [
      "README", "COPYING", "Rakefile",
      "lib/llvm.rb", "lib/ruby_vm.rb", "lib/version.rb",
      "ext/llvm_basicblock.cpp",
      "ext/llvm_function.cpp",
      "ext/llvm_instruction.cpp",
      "ext/llvm_module.cpp",
      "ext/llvm_use.cpp",
      "ext/llvm_user.cpp",
      "ext/llvm_value.cpp",
      "ext/llvmruby.c",
      "ext/llvmruby.h",
      "ext/extconf.rb",
      "test/test_basic.rb",
      "test/test_basic_block.rb",
      "test/test_instructions.rb",
      "test/test_read_bitcode.rb",
      "test/test_ruby_vm.rb",
      "test/test_user.rb",
      "test/test_value.rb",
      "test/byteswap.bc",
      "test/static.o"
    ]
    s.require_path = "lib"
    s.extensions << 'ext/extconf.rb'
    s.test_files = [
      "test/test_basic.rb",
      "test/test_basic_block.rb",
      "test/test_instructions.rb",
      "test/test_read_bitcode.rb",
      "test/test_ruby_vm.rb",
      "test/test_user.rb",
      "test/test_value.rb"
    ]
 
    s.has_rdoc = true
    s.extra_rdoc_files = [
      "README",
      "COPYING"
    ]
end