Sha256: eccb67fbc60b050881ecbfd0a89dbfbce8bd41524279f90db05aa6442ac157bf

Contents?: true

Size: 602 Bytes

Versions: 5

Compression:

Stored size: 602 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the ios_push_notifications plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the ios_push_notifications plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'IosPushNotifications'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ios_push_notifications-1.0 Rakefile
ios_push_notifications-0.9 Rakefile
ios_push_notifications-0.7 Rakefile
ios_push_notifications-0.6 Rakefile
ios_push_notifications-0.5 Rakefile