clangc.gemspec 554 B

12345678910111213141516
  1. Gem::Specification.new do |s|
  2. s.name = 'clangc'
  3. s.version = '0.0.1'
  4. s.date = '2015-04-22'
  5. s.summary = "Ruby bindings for clang C API"
  6. s.description = "Ruby bindings for clang C API"
  7. s.authors = ["cedlemo"]
  8. s.email = 'cedlemo@gmx.com'
  9. require "rake"
  10. s.files = FileList['lib/*.rb', 'ext/*/*.{rb,c,h}']
  11. s.extensions = %w(ext/clangc/extconf.rb)
  12. s.add_development_dependency 'rake-compiler', '~> 0'
  13. s.homepage = 'https://github.com/cedlemo/ruby-clangc'
  14. s.license = 'GNU GPL 3'
  15. end