Sha256: 368be11d840f80158bd1af529de85c7365b94fab98298df0dcdfd5dd81dfafaf
Contents?: true
Size: 676 Bytes
Versions: 1
Compression:
Stored size: 676 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activity_notification-2.3.0 | Rakefile |