Sha256: 90e8cf93c2110cc65a4e10f3dd3bf2e7622ac93c290b76168e723430f3a2c685

Contents?: true

Size: 378 Bytes

Versions: 3

Compression:

Stored size: 378 Bytes

Contents

require 'rake'

namespace :drg do
  desc 'Pins your gems in the Gemfile to the current version (using Gemfile.lock)'
  task :pin do
    DRG::Tasks::Pinner.new.perform
  end

  desc 'Updates your gems in the Gemfile to the latest compatible version'
  task :update do
    # sh 'cd /Users/ryanbuckley/apps/dontspreadit && which ruby'
    DRG::Tasks::Updater.new.perform
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
drg-0.3.0 lib/tasks/drg.rake
drg-0.2.1 lib/tasks/drg.rake
drg-0.2.0 lib/tasks/drg.rake