Sha256: d7dd34f7a7312bc5786c60263fe6f580f4be2a36bdc497ee4c440fbaffb17f07

Contents?: true

Size: 537 Bytes

Versions: 17

Compression:

Stored size: 537 Bytes

Contents

require "bundler/gem_tasks"
require 'rake/testtask'
Bundler::GemHelper.install_tasks

task :console do
  puts "Loading development console..."
  system("irb -r active_model_otp")
end

task :help do
  puts "Available rake tasks: "
  puts "rake console - Run a IRB console with all enviroment loaded"
  puts "rake test - Run tests"
end

task :test do
  Dir.chdir('test')
end

Rake::TestTask.new(:test) do |t|
  t.libs << '../lib'
  t.libs << '../test'
  t.test_files = FileList['*_test.rb']
  t.verbose = false
end

task :default => :test

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
active_model_otp-2.3.4 Rakefile
active_model_otp-2.3.2 Rakefile
active_model_otp-2.3.1 Rakefile
active_model_otp-2.3.0 Rakefile
active_model_otp-2.2.0 Rakefile
active_model_otp-2.1.1 Rakefile
active_model_otp-2.1.0 Rakefile
active_model_otp-2.0.1 Rakefile
has_secure_token-1.0.0 Rakefile
active_model_otp-1.2.0 Rakefile
has_secure_token-0.0.2 Rakefile
has_secure_token-0.0.1 Rakefile
active_model_otp-1.1.0 Rakefile
active_model_otp-1.0.0 Rakefile
active_model_otp-0.1.0 Rakefile
active_model_otp-0.0.2 Rakefile
active_model_otp-0.0.1 Rakefile