Sha256: 15c8682b8f2d9e148b150898666867aaa31221ae7940b158debf9a0d8d51900b

Contents?: true

Size: 848 Bytes

Versions: 11

Compression:

Stored size: 848 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 '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

11 entries across 11 versions & 1 rubygems

Version Path
pugin-0.6.4 Rakefile
pugin-0.6.3 Rakefile
pugin-0.6.2 Rakefile
pugin-0.6.1 Rakefile
pugin-0.6.0 Rakefile
pugin-0.5.5.pre Rakefile
pugin-0.5.4 Rakefile
pugin-0.5.2 Rakefile
pugin-0.5.1 Rakefile
pugin-0.5.0 Rakefile
pugin-0.2.0 Rakefile