Sha256: bc7bfca0fa1173c9ff933f5698b4478e8ef8186f1ccf15c555579b12db97eaef

Contents?: true

Size: 910 Bytes

Versions: 9

Compression:

Stored size: 910 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

APP_RAKEFILE = File.expand_path("../test/app/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

namespace :kkt_shoppe do
  desc 'Publish the release notes'
  task :changelog do
    system "scp -P 32032 CHANGELOG.md vdt@185.44.252.32:/app/docs/CHANGELOG.md"
  end

  desc "Publish RDoc documentation from doc to api.trykkt_shoppe.com"
  task :docs do
    if File.exist?('Rakefile')
      system "yard"
      system "ssh root@vm.adamcooke.io rm -Rf /var/www/kkt_shoppe-api"
      system "scp -r doc root@vm.adamcooke.io:/var/www/kkt_shoppe-api"
      system "rm -Rf doc"
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
kkt_shoppe-2.0.2 Rakefile
kkt_shoppe-2.0.1 Rakefile
kkt_shoppe-2.0.0 Rakefile
kkt_shoppe-1.3.0 Rakefile
kkt_shoppe-1.2.1 Rakefile
kkt_shoppe-1.2.0 Rakefile
kkt_shoppe-1.1.2 Rakefile
kkt_shoppe-1.1.1 Rakefile
kkt_shoppe-1.1.0 Rakefile