Sha256: 8ed2a9471e74cdd2a0bee4e5107aef23c9f8c40d43c07da2f08f0126243aea3f

Contents?: true

Size: 984 Bytes

Versions: 9

Compression:

Stored size: 984 Bytes

Contents

require 'rake'
require 'rake/testtask'

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

desc 'Test RubyCloud'
task :test do
  files = Dir['spec/**/*_spec.rb'].join(" ")
  system("bacon #{files}")
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "whiskey_disk"
    gemspec.summary = "embarrassingly fast deployments."
    gemspec.description = "Opinionated gem for doing fast git-based server deployments."
    gemspec.email = "rick@rickbradley.com"
    gemspec.homepage = "http://github.com/flogic/whiskey_disk"
    gemspec.authors = ["Rick Bradley"]
    gemspec.add_dependency('rake')
    
    # I've decided that the integration spec shizzle shouldn't go into the gem
    gemspec.files.exclude 'scenarios', 'spec/integration'
    gemspec.test_files.exclude 'scenarios', 'spec/integration'
  end
  Jeweler::GemcutterTasks.new  
rescue LoadError
  # if you get here, you need Jeweler installed to do packaging and gem installation, yo.
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
whiskey_disk-0.6.22 Rakefile
whiskey_disk-0.6.21 Rakefile
whiskey_disk-0.6.20 Rakefile
whiskey_disk-0.6.17 Rakefile
whiskey_disk-0.6.16 Rakefile
whiskey_disk-0.6.15 Rakefile
whiskey_disk-0.6.14 Rakefile
whiskey_disk-0.6.13 Rakefile
whiskey_disk-0.6.12 Rakefile