Sha256: f4216f388e596d3263c29d3345bea9aa00fac1de4cb56d4ce09ac530d264203d

Contents?: true

Size: 654 Bytes

Versions: 7

Compression:

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



load 'rails/tasks/statistics.rake'



Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rspec_opts = ['--backtrace']
  # spec.ruby_opts = ['-w']
end

task :default => :spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
exceptionally_beautiful-0.1.5 Rakefile
exceptionally_beautiful-0.1.4 Rakefile
exceptionally_beautiful-0.1.3 Rakefile
exceptionally_beautiful-0.1.2 Rakefile
exceptionally_beautiful-0.1.1 Rakefile
exceptionally_beautiful-0.1.0 Rakefile
exceptionally_beautiful-0.0.1 Rakefile