Gem::Specification.new do |spec| spec.name = "cast_off" spec.version = "0.3.7" spec.platform = Gem::Platform::RUBY spec.summary = "Compiler for Ruby1.9.3" spec.description = <<-EOS CastOff is a compiler for Ruby1.9.3. Command line tool cast_off is available after installation. See 'cast_off --help' for more information. EOS spec.files = Dir['{lib/**/*,ext/**/*,bin/**/*,doc/**/*}'] + %w[ cast_off.gemspec README.en README ] spec.bindir = 'bin' spec.executables << 'cast_off' spec.require_path = 'lib' spec.extensions = 'ext/cast_off/extconf.rb' spec.has_rdoc = false #spec.extra_rdoc_files = ['README', 'README.en'] #spec.test_files = Dir['test/*'] spec.author = 'Satoshi Shiba' spec.email = 'shiba@rvm.jp' spec.homepage = 'http://github.com/soba1104/CastOff' #spec.rubyforge_project = 'cast_off' spec.required_ruby_version = '>= 1.9.2' end