Sha256: 74d94683d4922316b5b4ed2120568e3aba7f8fda0f4b692786054cb574bc0e1b

Contents?: true

Size: 716 Bytes

Versions: 8

Compression:

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

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



Bundler::GemHelper.install_tasks

require 'rake/testtask'

require 'rspec/core'
require 'rspec/core/rake_task'
desc "Run all specs in spec directory (excluding plugin specs)"
RSpec::Core::RakeTask.new(spec: 'app:db:test:prepare')

task default: :spec

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
with_popup-0.1.0 Rakefile
with_popup-0.0.7 Rakefile
with_popup-0.0.6 Rakefile
with_popup-0.0.5 Rakefile
with_popup-0.0.4 Rakefile
with_popup-0.0.3 Rakefile
with_popup-0.0.2 Rakefile
with_popup-0.0.1 Rakefile