Sha256: 16fe3624a0fa8f523b32e576f7dcbb0560d160f8313e197f999f2573ffa7c668
Contents?: true
Size: 406 Bytes
Versions: 7
Compression:
Stored size: 406 Bytes
Contents
# frozen_string_literal: true spec_path = File.expand_path('../trenni.gemspec', Dir.pwd) spec = Gem::Specification.load(spec_path) require "rake/extensiontask" unless RUBY_PLATFORM =~ /java/ Rake::ExtensionTask.new("trenni") do |ext| ext.ext_dir = 'trenni' ext.lib_dir = '../lib/trenni' end else task :compile do puts "Nothing to compile for this platform." end end task :default => :compile
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
trenni-3.13.1 | ext/Rakefile |
trenni-3.13.0 | ext/Rakefile |
trenni-3.12.0 | ext/Rakefile |
trenni-3.11.0 | ext/Rakefile |
trenni-3.10.0 | ext/Rakefile |
trenni-3.9.0 | ext/Rakefile |
trenni-3.8.0 | ext/Rakefile |