Sha256: 984c0fde0c561e2805797c38fdf0f28c6e8979384396a5e3d607d88f7d28a58f

Contents?: true

Size: 547 Bytes

Versions: 28

Compression:

Stored size: 547 Bytes

Contents

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

task :default => :test

task :test => ["test:units","test:integration"]

namespace :test do

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

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

end

task :console do
  sh "pry -I lib/ssci_inc -r ssci_inc.rb"
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
ssci_inc-0.1.28 Rakefile
ssci_inc-0.1.27 Rakefile
ssci_inc-0.1.26 Rakefile
ssci_inc-0.1.24 Rakefile
ssci_inc-0.1.23 Rakefile
ssci_inc-0.1.22 Rakefile
ssci_inc-0.1.21 Rakefile
ssci_inc-0.1.20 Rakefile
ssci_inc-0.1.19 Rakefile
ssci_inc-0.1.18 Rakefile
ssci_inc-0.1.17 Rakefile
ssci_inc-0.1.16 Rakefile
ssci_inc-0.1.15 Rakefile
ssci_inc-0.1.14 Rakefile
ssci_inc-0.1.13 Rakefile
ssci_inc-0.1.12 Rakefile
ssci_inc-0.1.11 Rakefile
ssci_inc-0.1.10 Rakefile
ssci_inc-0.1.9 Rakefile
ssci_inc-0.1.8 Rakefile