Sha256: 7b9fd275d5760669b77efb19c95498093cd37fa466aa2cd02853e2fe7b73b855

Contents?: true

Size: 803 Bytes

Versions: 48

Compression:

Stored size: 803 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'SsoClyent'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

require 'rake/testtask'

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


task :default => :test

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
sso_clyent-0.1.3 Rakefile
sso_clyent-0.1.2 Rakefile
sso_clyent-0.1.1 Rakefile
sso_clyent-0.1.0 Rakefile
sso_clyent-0.0.7.38 Rakefile
sso_clyent-0.0.7.37 Rakefile
sso_clyent-0.0.7.36 Rakefile
sso_clyent-0.0.7.35 Rakefile
sso_clyent-0.0.7.34 Rakefile
sso_clyent-0.0.7.33 Rakefile
sso_clyent-0.0.7.32 Rakefile
sso_clyent-0.0.7.31 Rakefile
sso_clyent-0.0.7.30 Rakefile
sso_clyent-0.0.7.29 Rakefile
sso_clyent-0.0.7.28 Rakefile
sso_clyent-0.0.7.27 Rakefile
sso_clyent-0.0.7.26 Rakefile
sso_clyent-0.0.7.25 Rakefile
sso_clyent-0.0.7.24 Rakefile
sso_clyent-0.0.7.23 Rakefile