-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathruby-lua.gemspec
More file actions
27 lines (21 loc) · 867 Bytes
/
ruby-lua.gemspec
File metadata and controls
27 lines (21 loc) · 867 Bytes
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ruby-lua"
s.description = "Call Lua from Ruby (and Ruby from Lua in Ruby)"
s.summary = "Call Lua from Ruby (and Ruby from Lua in Ruby)"
s.version = open(File.join(File.dirname(__FILE__), "VERSION")).read
s.platform = Gem::Platform::RUBY
s.authors = ["Gregoire Lejeune"]
s.email = "gregoire.lejeune@free.fr"
s.homepage = "http://github.com/glejeune/ruby-lua"
s.license = "MIT"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.extra_rdoc_files = ["LICENSE.txt","README.rdoc"]
s.extensions = ["ext/extconf.rb"]
s.require_paths = ["lib"]
s.add_development_dependency("shoulda")
s.add_development_dependency("bundler")
s.add_development_dependency("rdoc")
s.add_development_dependency("rake")
end