aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
blob: 22f0c90d30f80bd1a768b4d5b6c95ae119455d01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rake/testtask'
require 'rubygems/package_task'

task :default => :test
Rake::TestTask.new do |t|
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.warning = true
  t.verbose = true
  t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end

namespace :test do
  task :isolated do
    Dir.glob("test/**/*_test.rb").all? do |file|
      sh(Gem.ruby, '-w', '-Ilib:test', file)
    end or raise "Failures"
  end
end

spec = eval(File.read('activesupport.gemspec'))

Gem::PackageTask.new(spec) do |p|
  p.gem_spec = spec
end