Sha256: 0d258c4f69cf6f50603cc86850d65f2893ac7a9cd21583dd8d9b4f2dc1b5b592
Contents?: true
Size: 1.18 KB
Versions: 4
Compression:
Stored size: 1.18 KB
Contents
RUBY_1_9 = RUBY_VERSION =~ /^1\.9/ WIN = (RUBY_PLATFORM =~ /mswin|cygwin/) SUDO = (WIN ? "" : "sudo") require 'rake' require 'rake/clean' require 'rake/extensiontask' # from rake-compiler gem $: << File.join(File.dirname(__FILE__), 'lib') require 'thin' # Load tasks in tasks/ Dir['tasks/**/*.rake'].each { |rake| load rake } task :default => :spec Rake::ExtensionTask.new('thin_parser', Thin::GemSpec) do |ext| # enable cross compilation (requires cross compile toolchain) ext.cross_compile = true # forces the Windows platform instead of the default one # configure options only for cross compile ext.cross_platform = %w( i386-mswin32 x86-mingw32 ) end CLEAN.include %w(**/*.{o,bundle,jar,so,obj,pdb,lib,def,exp,log} ext/*/Makefile ext/*/conftest.dSYM) desc "Compile the Ragel state machines" task :ragel do Dir.chdir 'ext/thin_parser' do target = "parser.c" File.unlink target if File.exist? target sh "ragel parser.rl -G2 -o #{target}" raise "Failed to compile Ragel state machine" unless File.exist? target end end desc "Release version #{Thin::VERSION::STRING} gems to rubyforge" task :release => [:clean, :cross, :native, :gem, :tag, "gem:upload"]
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
thin-1.2.6 | Rakefile |
thin-1.2.6-x86-mswin32 | Rakefile |
thin-1.2.6-x86-mingw32 | Rakefile |
thin-1.2.5 | Rakefile |