Sha256: 6bf6416ce6651ac75aadcb2976e7faa88cbd7fbcdf99147f1aac2dbe817cb376
Contents?: true
Size: 727 Bytes
Versions: 3
Compression:
Stored size: 727 Bytes
Contents
# encoding: utf-8 require 'rubygems' begin require 'bundler' rescue LoadError => e warn e.message warn "Run `gem install bundler` to install Bundler." exit -1 end begin Bundler.setup(:development) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems." exit e.status_code end require 'rake' require 'rubygems/tasks' Gem::Tasks.new(release: false) require 'rspec/core/rake_task' RSpec::Core::RakeTask.new task test: :spec task default: :spec require 'yard' YARD::Rake::YardocTask.new task doc: :yard task :release do Rake::Task['fury:release'].invoke(nil, 'payrollhero') Dir['*.gem'].each do |fn| puts "Removing: #{fn}" File.unlink(fn) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
excel_templating-0.4.2 | Rakefile |
excel_templating-0.4.1 | Rakefile |
excel_templating-0.4.0 | Rakefile |