Sha256: 6feb467267e409a3c3ff8eb8503b0d5942e9a9f89074ea4646bf4af24ce071fe

Contents?: true

Size: 507 Bytes

Versions: 101

Compression:

Stored size: 507 Bytes

Contents

require "bundler/gem_tasks"
require 'rake/testtask'
require 'rake/clean'

Rake::TestTask.new("spec:unit") do |spec|
  spec.libs.push "lib"
  spec.libs.push "spec"
  spec.libs.push "spec/unit"
  spec.test_files = FileList['spec/unit/**/*_spec.rb']
  spec.warning = true
end

Rake::TestTask.new("spec:integration") do |spec|
  spec.libs.push "lib"
  spec.libs.push "spec"
  spec.test_files = FileList['spec/integration/**/*_spec.rb']
  spec.warning = true
end

task :spec => "spec:unit"
task :default => :spec

Version data entries

101 entries across 101 versions & 2 rubygems

Version Path
intercom-3.9.5 Rakefile
intercom-3.9.4 Rakefile
intercom-3.9.3 Rakefile
intercom-3.9.2 Rakefile
intercom-3.9.0 Rakefile
intercom-3.8.1 Rakefile
intercom-3.8.0 Rakefile
intercom-3.7.7 Rakefile
intercom-3.7.6 Rakefile
intercom-3.7.5 Rakefile
intercom-3.7.4 Rakefile
intercom-3.7.3 Rakefile
intercom-3.7.2 Rakefile
intercom-3.7.1 Rakefile
intercom-3.7.0 Rakefile
intercom-3.6.2 Rakefile
intercom-3.6.1 Rakefile
intercom-3.6.0 Rakefile
intercom-3.5.26 Rakefile
intercom-3.5.25 Rakefile