Sha256: 82c0cb05afc83ff1e0734ef495e9f5ac70dc8706476b9a396f60d533a8e0c3bd

Contents?: true

Size: 674 Bytes

Versions: 14

Compression:

Stored size: 674 Bytes

Contents

require "bundler/gem_tasks"

task default: :test

begin
  require 'rspec/core'
  require 'rspec/core/rake_task'
  desc 'Run RSpec test for the activity_notification plugin.'
  RSpec::Core::RakeTask.new(:test) do |spec|
    spec.pattern = FileList['spec/**/*_spec.rb']
  end
rescue LoadError
end

begin
  require 'yard'
  require 'yard/rake/yardoc_task'
  desc 'Generate documentation for the activity_notification plugin.'
  YARD::Rake::YardocTask.new do |doc|
    doc.files = ['app/**/*.rb', 'lib/**/*.rb']
  end
rescue LoadError
end

Bundler::GemHelper.install_tasks

require File.expand_path('../spec/rails_app/config/application', __FILE__)
Rails.application.load_tasks

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
activity_notification-2.3.3 Rakefile
activity_notification-2.3.2 Rakefile
activity_notification-2.3.1 Rakefile
activity_notification-2.2.4 Rakefile
activity_notification-2.2.3 Rakefile
activity_notification-2.2.2 Rakefile
activity_notification-2.2.1 Rakefile
activity_notification-2.2.0 Rakefile
activity_notification-2.1.4 Rakefile
activity_notification-2.1.3 Rakefile
activity_notification-2.1.2 Rakefile
activity_notification-2.1.1 Rakefile
activity_notification-2.1.0 Rakefile
activity_notification-2.0.0 Rakefile