Sha256: 12dfa98d4eebbd791313df9708f6ab3ccede3b857fa4b6dbf4e1835feb7b282e

Contents?: true

Size: 703 Bytes

Versions: 56

Compression:

Stored size: 703 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

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

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


load 'rails/tasks/statistics.rake'



require 'bundler/gem_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

56 entries across 56 versions & 1 rubygems

Version Path
agilibox-1.8.0 Rakefile
agilibox-1.7.4 Rakefile
agilibox-1.7.3 Rakefile
agilibox-1.7.2 Rakefile
agilibox-1.7.1 Rakefile
agilibox-1.7.0 Rakefile
agilibox-1.6.2 Rakefile
agilibox-1.6.1 Rakefile
agilibox-1.6.0 Rakefile
agilibox-1.5.13 Rakefile
agilibox-1.5.12 Rakefile
agilibox-1.5.11 Rakefile
agilibox-1.5.10 Rakefile
agilibox-1.5.9 Rakefile
agilibox-1.5.8 Rakefile
agilibox-1.5.7 Rakefile
agilibox-1.5.6 Rakefile
agilibox-1.5.5 Rakefile
agilibox-1.5.4 Rakefile
agilibox-1.5.3 Rakefile