Sha256: 245b0c6defff33a4c9bc4d52984073b7eebcc0cbc72af59813d4bce6b644e7ee

Contents?: true

Size: 811 Bytes

Versions: 22

Compression:

Stored size: 811 Bytes

Contents

require 'bundler/gem_tasks'
Bundler::GemHelper.install_tasks

require 'rspec/core'
require 'rspec/core/rake_task'
require 'ci/reporter/rake/rspec'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rspec_opts = '--color'
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
  spec.rspec_opts = '--color'
end

task :default => [:compile, :spec]
task :ci => ['ci:setup:rspec', :compile, :spec]

require 'yard'
YARD::Rake::YardocTask.new

if RUBY_PLATFORM =~ /java/
  require 'rake/javaextensiontask'
  Rake::JavaExtensionTask.new 'ruby_speech' do |ext|
    ext.lib_dir = 'lib/ruby_speech'
  end
else
  require 'rake/extensiontask'
  Rake::ExtensionTask.new 'ruby_speech' do |ext|
    ext.lib_dir = 'lib/ruby_speech'
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
ruby_speech-2.4.0-java Rakefile
ruby_speech-2.4.0 Rakefile
ruby_speech-2.3.2-java Rakefile
ruby_speech-2.3.2 Rakefile
ruby_speech-2.3.1-java Rakefile
ruby_speech-2.3.1 Rakefile
ruby_speech-2.3.0-java Rakefile
ruby_speech-2.3.0 Rakefile
ruby_speech-2.2.2-java Rakefile
ruby_speech-2.2.2 Rakefile
ruby_speech-2.2.1-java Rakefile
ruby_speech-2.2.1 Rakefile
ruby_speech-2.2.0-java Rakefile
ruby_speech-2.2.0 Rakefile
ruby_speech-2.1.2-java Rakefile
ruby_speech-2.1.2 Rakefile
ruby_speech-2.1.1-java Rakefile
ruby_speech-2.1.1 Rakefile
ruby_speech-2.1.0-java Rakefile
ruby_speech-2.1.0 Rakefile