Sha256: 4d713eaffe3036251135756973ea3ce8f4a69e49182d4002cfa22d94cf8238d0

Contents?: true

Size: 710 Bytes

Versions: 8

Compression:

Stored size: 710 Bytes

Contents

require 'rake/testtask'

desc "By default run all tests"
task :default => :test

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

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name     = "on-test-spec"
    s.homepage = "http://github.com/Fingertips/on-test-spec"
    s.email    = "eloy.de.enige@gmail.com"
    s.authors  = ["Manfred Stienstra", "Eloy Duran", "Cristi Balan"]
    s.summary  = s.description = "Rails plugin to make testing Rails on test/spec easier."
  end
rescue LoadError
end

begin
  require 'jewelry_portfolio/tasks'
  JewelryPortfolio::Tasks.new do |p|
    p.account = 'Fingertips'
  end
rescue LoadError
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
Fingertips-on-test-spec-0.1.2 Rakefile
Fingertips-on-test-spec-0.2.0 Rakefile
Fingertips-on-test-spec-0.2.1 Rakefile
Fingertips-on-test-spec-0.2.2 Rakefile
Fingertips-on-test-spec-0.2.3 Rakefile
on-test-spec-0.2.6 Rakefile
on-test-spec-0.2.5 Rakefile
on-test-spec-0.2.4 Rakefile