public
Description: embedding Lua in Ruby, via FFI
Homepage: http://rufus.rubyforge.org
Clone URL: git://github.com/jmettraux/rufus-lua.git
jmettraux (author)
Tue Sep 29 21:26:30 -0700 2009
commit  ec550f9bac9aac87f15673e3a205f36e73f79826
tree    797b7b571439a51fc310948dff18863ea540f50e
parent  24f00703629bb23261b2d1c1b470cb1cf10d550f
rufus-lua / rufus-lua.gemspec
100644 27 lines (20 sloc) 0.707 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
Gem::Specification.new do |s|
 
  s.name = 'rufus-lua'
  s.version = '1.1.0'
  s.authors = [ 'John Mettraux', 'Alain Hoang', 'Scott Persinger' ]
  s.email = 'jmettraux@gmail.com'
  s.homepage = 'http://rufus.rubyforge.org/'
  s.platform = Gem::Platform::RUBY
  s.summary = 'ruby-ffi based bridge from Ruby to Lua'
 
  s.require_path = 'lib'
  s.test_file = 'spec/spec.rb'
  s.has_rdoc = true
  s.extra_rdoc_files = %w{ README.rdoc CHANGELOG.txt CREDITS.txt LICENSE.txt }
  s.rubyforge_project = 'rufus'
 
  %w{ ffi }.each do |d|
    s.requirements << d
    s.add_dependency(d)
  end
 
  #s.files = Dir['lib/**/*.rb'] + Dir['*.txt'] - [ 'lib/tokyotyrant.rb' ]
  s.files = Dir['lib/**/*.rb'] + Dir['*.txt']
end