Sha256: b60fdfa3535635542e87709a82e1e39ddc21ba496a47fba81e5afe38e1ae3a09
Contents?: true
Size: 507 Bytes
Versions: 5
Compression:
Stored size: 507 Bytes
Contents
require 'rubygems' require 'bundler' Bundler.setup require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'test' test.pattern = 'test/**/*_test.rb' test.verbose = false # Set interpreter warning level to 1 (medium). Level 2 produces hundreds of warnings # about uninitialized instance variables. # TODO: Find a good way to deal with the level 2 warnings. test.ruby_opts += ["-W1"] end require "rubocop/rake_task" RuboCop::RakeTask.new task :default => [:rubocop, :test]
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
authlogic-3.8.0 | Rakefile |
authlogic-3.7.0 | Rakefile |
authlogic-3.6.1 | Rakefile |
authlogic-3.6.0 | Rakefile |
authlogic-3.5.0 | Rakefile |