Sha256: cb44384fd5fa32746dc0278d4405dff9c1937a1f6979339d5e22a0cf68c91846

Contents?: true

Size: 330 Bytes

Versions: 1

Compression:

Stored size: 330 Bytes

Contents

#!/usr/bin/env rake
require 'bundler'
Bundler::GemHelper.install_tasks

desc "Bundle the gem"
task :bundle  => [:bundle_install] do
  sh 'gem build *.gemspec'
  sh 'gem install *.gem'
  sh 'rm *.gem'
end

desc "Runs bundle install"
task :bundle_install do
  sh('bundle install')
end

task(:default).clear
task :default => :bundle

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tuktuk-rails-0.0.6 lib/tasks/tuktuk_tasks.rake