Sha256: a9ae559c812dc993f40141134849a66a5719308fbb2a2f632e320044ae36d1c0
Contents?: true
Size: 887 Bytes
Versions: 2
Compression:
Stored size: 887 Bytes
Contents
require 'rubygems' begin require 'bundler' rescue LoadError $stderr.puts "You must install bundler - run `gem install bundler`" end begin Bundler.setup rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'bueller' Bueller::Tasks.new require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.rspec_opts = '-Ispec' end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.rspec_opts = '-Ispec' spec.rcov = true end task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.main = 'README.rdoc' rdoc.rdoc_dir = 'rdoc' rdoc.title = "enumerable_hashify #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
enumerable_hashify-0.0.2 | Rakefile |
enumerable_hashify-0.0.1 | Rakefile |