Sha256: 3854fa0bcd0143188abef080afdc3cb56b353534bd5d5970ce3d067cc000fdc7

Contents?: true

Size: 614 Bytes

Versions: 15

Compression:

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

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new('spec')

task :default => :spec

Bundler::GemHelper.install_tasks

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
axlsx_rails-0.6.1 Rakefile
axlsx_rails-0.6.0 Rakefile
axlsx_rails-0.5.2 Rakefile
axlsx_rails-0.5.1 Rakefile
axlsx_rails-0.5.0 Rakefile
axlsx_rails-0.4.0 Rakefile
axlsx_rails-0.3.0 Rakefile
axlsx_rails-0.2.1 Rakefile
axlsx_rails-0.2.0 Rakefile
axlsx_rails-0.1.5 Rakefile
axlsx_rails-0.1.4 Rakefile
axlsx_rails-0.1.3 Rakefile
axlsx_rails-0.1.2 Rakefile
axlsx_rails-0.1.1 Rakefile
axlsx_rails-0.1.0 Rakefile