Sha256: b8067d69e0ea2eda3f985df01d7a87abe829cc0762e19681005fbd8c56bc382e

Contents?: true

Size: 689 Bytes

Versions: 30

Compression:

Stored size: 689 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", __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 << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task default: :test

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
hackathon_manager-0.7.1 Rakefile
hackathon_manager-0.7.0 Rakefile
hackathon_manager-0.6.6 Rakefile
hackathon_manager-0.6.5 Rakefile
hackathon_manager-0.6.4 Rakefile
hackathon_manager-0.6.3 Rakefile
hackathon_manager-0.6.2 Rakefile
hackathon_manager-0.6.1 Rakefile
hackathon_manager-0.6.0 Rakefile
hackathon_manager-0.5.11 Rakefile
hackathon_manager-0.5.10 Rakefile
hackathon_manager-0.5.9 Rakefile
hackathon_manager-0.5.8 Rakefile
hackathon_manager-0.5.7 Rakefile
hackathon_manager-0.5.6 Rakefile
hackathon_manager-0.5.5 Rakefile
hackathon_manager-0.5.4 Rakefile
hackathon_manager-0.5.3 Rakefile
hackathon_manager-0.5.2 Rakefile
hackathon_manager-0.5.1 Rakefile