Sha256: aba3ff1806936b7d1f455f6582b45ae13e70499fbdb6837e4ac69874f580dd96

Contents?: true

Size: 781 Bytes

Versions: 26

Compression:

Stored size: 781 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

task "assets:precompile" do
  Rake::Task["app:assets:precompile"].invoke
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
agilibox-2.0.0 Rakefile
agilibox-1.11.0 Rakefile
agilibox-1.10.5 Rakefile
agilibox-1.10.2 Rakefile
agilibox-1.10.1 Rakefile
agilibox-1.10.0 Rakefile
agilibox-1.9.20 Rakefile
agilibox-1.9.19 Rakefile
agilibox-1.9.18 Rakefile
agilibox-1.9.17 Rakefile
agilibox-1.9.16 Rakefile
agilibox-1.9.15 Rakefile
agilibox-1.9.14 Rakefile
agilibox-1.9.13 Rakefile
agilibox-1.9.12 Rakefile
agilibox-1.9.11 Rakefile
agilibox-1.9.10 Rakefile
agilibox-1.9.9 Rakefile
agilibox-1.9.8 Rakefile
agilibox-1.9.7 Rakefile