Sha256: e8c0d15a731df1b1eaa99e3ec585de3a9596110e59dea622ca787c29a14879a4

Contents?: true

Size: 992 Bytes

Versions: 4

Compression:

Stored size: 992 Bytes

Contents

# -*- ruby -*-


require 'rubygems'
require "rspec/core/rake_task"

# Hoe.plugin :compiler
# Hoe.plugin :gem_prelude_sucks
# Hoe.plugin :inline
# Hoe.plugin :racc
# Hoe.plugin :rubyforge
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'ruby'
  require 'hoe'
  Hoe.plugin :git
  Hoe.plugin :gemspec
  Hoe.plugin :bundler
  Hoe.plugin :gemcutter
  Hoe.plugins.delete :rubyforge
  Hoe.plugins.delete :test

  Hoe.spec 'profitbricks' do
    developer('Dominik Sander', 'git@dsander.de')

    self.readme_file = 'README.md'
    self.history_file = 'CHANGELOG.md'
    self.extra_deps << ["savon", "2.2.0"]
  end

  task :prerelease => [:clobber, :check_manifest, :test]
end

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/profitbricks/*_spec.rb'
  spec.rspec_opts = ['--backtrace']
end
namespace :spec do
  RSpec::Core::RakeTask.new(:live) do |spec|
    spec.pattern = 'spec/live/*_spec.rb'
    spec.rspec_opts = ['--backtrace']
  end
end


task :default => :spec
task :test => :spec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
profitbricks-1.1.0 Rakefile
profitbricks-1.0.3 Rakefile
profitbricks-1.0.1 Rakefile
profitbricks-1.0.0 Rakefile