Sha256: 589f9b445c13cfccaadd65e5566e76d752341195e255c27df299eda579968172

Contents?: true

Size: 685 Bytes

Versions: 31

Compression:

Stored size: 685 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    = 'HackathonManager'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
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 << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task default: :test

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
hackathon_manager-0.14.1 Rakefile
hackathon_manager-0.14.0 Rakefile
hackathon_manager-0.13.12 Rakefile
hackathon_manager-0.13.11 Rakefile
hackathon_manager-0.13.10 Rakefile
hackathon_manager-0.13.9 Rakefile
hackathon_manager-0.13.8 Rakefile
hackathon_manager-0.13.7 Rakefile
hackathon_manager-0.13.6 Rakefile
hackathon_manager-0.13.5 Rakefile
hackathon_manager-0.13.4 Rakefile
hackathon_manager-0.13.3 Rakefile
hackathon_manager-0.13.2 Rakefile
hackathon_manager-0.13.1 Rakefile
hackathon_manager-0.13.0 Rakefile
hackathon_manager-0.12.2 Rakefile
hackathon_manager-0.12.1 Rakefile
hackathon_manager-0.12.0 Rakefile
hackathon_manager-0.11.2 Rakefile
hackathon_manager-0.11.1 Rakefile