mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Fix indentation in Rakefile (alexvollmer)
This commit is contained in:
parent
fbe53ecaaf
commit
9900af3cf5
1 changed files with 30 additions and 30 deletions
60
Rakefile
60
Rakefile
|
@ -4,20 +4,20 @@ require 'rake'
|
|||
begin
|
||||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gem|
|
||||
gem.name = "httparty"
|
||||
gem.summary = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
gem.description = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
gem.email = "nunemaker@gmail.com"
|
||||
gem.homepage = "http://httparty.rubyforge.org"
|
||||
gem.authors = ["John Nunemaker", "Sandro Turriate"]
|
||||
gem.add_dependency 'crack', '>= 0.1.1'
|
||||
gem.add_development_dependency "rspec", "1.2.9"
|
||||
gem.post_install_message = "When you HTTParty, you must party hard!"
|
||||
gem.rubyforge_project = 'httparty'
|
||||
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
||||
gem.name = "httparty"
|
||||
gem.summary = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
gem.description = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
||||
gem.email = "nunemaker@gmail.com"
|
||||
gem.homepage = "http://httparty.rubyforge.org"
|
||||
gem.authors = ["John Nunemaker", "Sandro Turriate"]
|
||||
gem.add_dependency 'crack', '>= 0.1.1'
|
||||
gem.add_development_dependency "rspec", "1.2.9"
|
||||
gem.post_install_message = "When you HTTParty, you must party hard!"
|
||||
gem.rubyforge_project = 'httparty'
|
||||
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
||||
end
|
||||
Jeweler::RubyforgeTasks.new do |rubyforge|
|
||||
rubyforge.doc_task = "rdoc"
|
||||
rubyforge.doc_task = "rdoc"
|
||||
end
|
||||
rescue LoadError
|
||||
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
||||
|
@ -25,15 +25,15 @@ end
|
|||
|
||||
require 'spec/rake/spectask'
|
||||
Spec::Rake::SpecTask.new(:spec) do |spec|
|
||||
spec.libs << 'lib' << 'spec'
|
||||
spec.spec_files = FileList['spec/**/*_spec.rb']
|
||||
spec.spec_opts = ['--options', 'spec/spec.opts']
|
||||
spec.libs << 'lib' << 'spec'
|
||||
spec.spec_files = FileList['spec/**/*_spec.rb']
|
||||
spec.spec_opts = ['--options', 'spec/spec.opts']
|
||||
end
|
||||
|
||||
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
||||
spec.libs << 'lib' << 'spec'
|
||||
spec.pattern = 'spec/**/*_spec.rb'
|
||||
spec.rcov = true
|
||||
spec.libs << 'lib' << 'spec'
|
||||
spec.pattern = 'spec/**/*_spec.rb'
|
||||
spec.rcov = true
|
||||
end
|
||||
|
||||
task :spec => :check_dependencies
|
||||
|
@ -41,11 +41,11 @@ task :spec => :check_dependencies
|
|||
begin
|
||||
require 'cucumber/rake/task'
|
||||
Cucumber::Rake::Task.new(:features)
|
||||
|
||||
|
||||
task :features => :check_dependencies
|
||||
rescue LoadError
|
||||
task :features do
|
||||
abort "Cucumber is not available. In order to run features, you must: sudo gem install cucumber"
|
||||
abort "Cucumber is not available. In order to run features, you must: sudo gem install cucumber"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -53,19 +53,19 @@ task :default => [:spec, :features]
|
|||
|
||||
require 'rake/rdoctask'
|
||||
Rake::RDocTask.new do |rdoc|
|
||||
if File.exist?('VERSION')
|
||||
version = File.read('VERSION')
|
||||
else
|
||||
version = ""
|
||||
end
|
||||
if File.exist?('VERSION')
|
||||
version = File.read('VERSION')
|
||||
else
|
||||
version = ""
|
||||
end
|
||||
|
||||
rdoc.rdoc_dir = 'rdoc'
|
||||
rdoc.title = "httparty #{version}"
|
||||
rdoc.rdoc_files.include('README*')
|
||||
rdoc.rdoc_files.include('lib/**/*.rb')
|
||||
rdoc.rdoc_dir = 'rdoc'
|
||||
rdoc.title = "httparty #{version}"
|
||||
rdoc.rdoc_files.include('README*')
|
||||
rdoc.rdoc_files.include('lib/**/*.rb')
|
||||
end
|
||||
|
||||
desc 'Upload website files to rubyforge'
|
||||
task :website do
|
||||
sh %{rsync -av website/ jnunemaker@rubyforge.org:/var/www/gforge-projects/httparty}
|
||||
sh %{rsync -av website/ jnunemaker@rubyforge.org:/var/www/gforge-projects/httparty}
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue