Sha256: 867f0c5203272f1d343ba20a8258894af54c2253a8041064455068a12fcd72f5

Contents?: true

Size: 882 Bytes

Versions: 8

Compression:

Stored size: 882 Bytes

Contents

require 'rake'
require 'rake/testtask'

task :default => [:test_units]

desc "Run basic tests"
Rake::TestTask.new("test_units") { |t|
  t.pattern = 'test/*_test.rb'
  t.verbose = true
  t.warning = true
}

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "dreamy"
    gemspec.summary = "A Ruby library and command line tool for accessing DreamHost's API"
    gemspec.email = "jerod.santo@gmail.com"
    gemspec.homepage = "http://github.com/sant0sk1/dreamy"
    gemspec.authors = ["Jerod Santo"]
    gemspec.add_dependency('visionmedia-terminal-table', '>= 1.0.5')
    gemspec.add_dependency('hpricot', '>= 0.7')
    gemspec.add_dependency('uuid', '>= 2.0.1')
    gemspec.files.exclude 'test/credentials.yml'
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
jordan-brough-dreamy-0.5.1 Rakefile
sant0sk1-dreamy-0.2.3 Rakefile
sant0sk1-dreamy-0.2.4 Rakefile
sant0sk1-dreamy-0.3.0 Rakefile
sant0sk1-dreamy-0.4.1 Rakefile
sant0sk1-dreamy-0.5.0 Rakefile
sant0sk1-dreamy-0.5.1 Rakefile
dreamy-0.5.1 Rakefile