Sha256: ac71403c2b5a20894197443d0031f26f6c7011b8e2dcbba6009490eea30e7fd2

Contents?: true

Size: 706 Bytes

Versions: 13

Compression:

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

Bundler::GemHelper.install_tasks


APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
fooltip-0.0.13 Rakefile
fooltip-0.0.12 Rakefile
fooltip-0.0.11 Rakefile
fooltip-0.0.10 Rakefile
fooltip-0.0.9 Rakefile
fooltip-0.0.8 Rakefile
fooltip-0.0.7 Rakefile
fooltip-0.0.6 Rakefile
fooltip-0.0.5 Rakefile
fooltip-0.0.4 Rakefile
fooltip-0.0.3 Rakefile
fooltip-0.0.2 Rakefile
fooltip-0.0.1 Rakefile