Sha256: ea6abdda49eabdd8541c2939d9b8bd0af860f692da262d35c781880eabd1ef1b

Contents?: true

Size: 1.35 KB

Versions: 13

Compression:

Stored size: 1.35 KB

Contents

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

Version data entries

13 entries across 13 versions & 9 rubygems

Version Path
alexvollmer-httparty-0.4.3 Rakefile
cluon-httparty-0.4.3 Rakefile
geetarista-httparty-0.4.5 Rakefile
jnunemaker-httparty-0.4.2 Rakefile
jnunemaker-httparty-0.4.3 Rakefile
jnunemaker-httparty-0.4.4 Rakefile
kerryb-httparty-0.4.3 Rakefile
mfilej-httparty-0.4.3 Rakefile
nullstyle-httparty-0.4.4 Rakefile
yyyc514-httparty-0.4.4.2 Rakefile
httparty-0.4.4 Rakefile
httparty-0.4.2 Rakefile
httparty-0.4.3 Rakefile