Sha256: fe5cf999ada0c1c87d743fe5c728d22428cbe594c55d7ea7246d1cd3ed06c24c

Contents?: true

Size: 875 Bytes

Versions: 83

Compression:

Stored size: 875 Bytes

Contents

#!/usr/bin/env rake
require 'bundler/gem_tasks'

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'bandiera/client'

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Pugin'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)

load 'rails/tasks/engine.rake'
load 'rails/tasks/statistics.rake'

Bundler::GemHelper.install_tasks

Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each { |f| load f }

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

83 entries across 83 versions & 1 rubygems

Version Path
pugin-1.10.10 Rakefile
pugin-1.10.9 Rakefile
pugin-1.10.8 Rakefile
pugin-1.10.7 Rakefile
pugin-1.10.6 Rakefile
pugin-1.10.5 Rakefile
pugin-1.10.4 Rakefile
pugin-1.10.3 Rakefile
pugin-1.10.2 Rakefile
pugin-1.10.1 Rakefile
pugin-1.10.0 Rakefile
pugin-1.9.7 Rakefile
pugin-1.9.6 Rakefile
pugin-1.9.5 Rakefile
pugin-1.9.4 Rakefile
pugin-1.9.3 Rakefile
pugin-1.9.2 Rakefile
pugin-1.9.1 Rakefile
pugin-1.9.0 Rakefile
pugin-1.8.9 Rakefile