Sha256: 7f930346eff615a3c8a544410af3a1fc12be9672ac341d9ab2454b614007ba48

Contents?: true

Size: 690 Bytes

Versions: 14

Compression:

Stored size: 690 Bytes

Contents

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    = 'FwtPushNotificationServer'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fwt_push_notification_server-0.1.0.b11 Rakefile
fwt_push_notification_server-0.1.0.b10 Rakefile
fwt_push_notification_server-0.1.0.b9 Rakefile
fwt_push_notification_server-0.1.0.b8 Rakefile
fwt_push_notification_server-0.1.0.b7 Rakefile
fwt_push_notification_server-0.1.0.b6 Rakefile
fwt_push_notification_server-0.1.0.b5 Rakefile
fwt_push_notification_server-0.1.0.b4 Rakefile
fwt_push_notification_server-0.1.0.b3 Rakefile
fwt_push_notification_server-0.1.0.b2 Rakefile
fwt_push_notification_server-0.1.0.b1 Rakefile
fwt_push_notification_server-0.0.7 Rakefile
fwt_push_notification_server-0.0.7.b4 Rakefile
fwt_push_notification_server-0.0.6 Rakefile