technicalpickles / httparty forked from jnunemaker/httparty

Makes http fun! Also, makes consuming restful web services dead easy.

This URL has Read+Write access

httparty / Rakefile
100644 49 lines (41 sloc) 1.378 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
ProjectName = 'httparty'
WebsitePath = "jnunemaker@rubyforge.org:/var/www/gforge-projects/#{ProjectName}"
 
require 'rubygems'
require 'rake'
require 'echoe'
require 'spec/rake/spectask'
require "lib/#{ProjectName}/version"
require 'cucumber/rake/task'
 
Echoe.new(ProjectName, HTTParty::Version) do |p|
  p.description = "Makes http fun! Also, makes consuming restful web services dead easy."
  p.install_message = "When you HTTParty, you must party hard!"
  p.url = "http://#{ProjectName}.rubyforge.org"
  p.author = "John Nunemaker"
  p.email = "nunemaker@gmail.com"
  p.extra_deps = [['crack', '>= 0.1.1']]
  p.need_tar_gz = false
  p.docs_host = WebsitePath
end
 
desc 'Upload website files to rubyforge'
task :website do
  sh %{rsync -av website/ #{WebsitePath}}
  Rake::Task['website_docs'].invoke
end
 
task :website_docs do
  Rake::Task['redocs'].invoke
  sh %{rsync -av doc/ #{WebsitePath}/docs}
end
 
desc 'Preps the gem for a new release'
task :prepare do
  %w[manifest build_gemspec].each do |task|
    Rake::Task[task].invoke
  end
end
 
Rake::Task[:default].prerequisites.clear
task :default => :spec
Spec::Rake::SpecTask.new do |t|
  t.spec_files = FileList["spec/**/*_spec.rb"]
end
 
Cucumber::Rake::Task.new(:features) do |t|
  t.cucumber_opts = "--format pretty"
end