Sha256: a0b799a0612296a5788efd51b553ff665caf62874e972327604571b04fedf7c2
Contents?: true
Size: 503 Bytes
Versions: 4
Compression:
Stored size: 503 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" desc "Run non-integration specs" RSpec::Core::RakeTask.new(:spec) do |task| task.exclude_pattern = "spec/integration/*_spec.rb" end namespace :spec do desc "Run all specs (including integration)" RSpec::Core::RakeTask.new(:all) end task :default => :spec namespace :maven do desc "Download dependencies specified in pom.xml" task :dependencies do system("mvn dependency:copy-dependencies -DoutputDirectory=lib/ext") end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ecco-1.0.0-java | Rakefile |
ecco-0.8.0-java | Rakefile |
ecco-0.7.0-java | Rakefile |
ecco-0.6.1-java | Rakefile |