Sha256: 6d37ccbcab56834368c0011b36aec9fb089bc6e7707170fe97f4364c72ad3d68
Contents?: true
Size: 733 Bytes
Versions: 5
Compression:
Stored size: 733 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 = 'OpenSesame' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end require "bundler/gem_tasks" require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| # t.pattern = "./spec/**/*_spec.rb" # default # Put spec opts in a file named .rspec in root end desc "Run the specs" task :default => ["spec"]
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
lionel_richie-0.3.1 | Rakefile |
lionel_richie-0.3.0 | Rakefile |
lionel_richie-0.2.4 | Rakefile |
lionel_richie-0.2.3.1 | Rakefile |
lionel_richie-0.2.3 | Rakefile |