Sha256: 416aa09c333686fa38297fdd4409a678eec522dc32e4603398abab72f665a951

Contents?: true

Size: 522 Bytes

Versions: 9

Compression:

Stored size: 522 Bytes

Contents

require 'rake'

require 'rdoc/task'

Rake::RDocTask.new("doc") do |rdoc|
  load 'lib/httpclient/version.rb'
  rdoc.rdoc_dir = 'doc'
  rdoc.title = "HTTPClient Library Document: Version #{HTTPClient::VERSION}"
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('CHANGELOG.rdoc')
  rdoc.rdoc_files.include('lib/httpclient/*.rb')
  rdoc.rdoc_files.include('lib/httpclient.rb')
end

require "bundler/gem_tasks"

require 'rspec/core/rake_task'

desc "Run specs"
RSpec::Core::RakeTask.new

task :default => 'spec'

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
glebtv-httpclient-3.3.0 Rakefile
glebtv-httpclient-3.2.8 Rakefile
glebtv-httpclient-3.2.7 Rakefile
glebtv-httpclient-3.2.6 Rakefile
glebtv-httpclient-3.2.4 Rakefile
glebtv-httpclient-3.2.3 Rakefile
glebtv-httpclient-3.2.2 Rakefile
glebtv-httpclient-3.2.1 Rakefile
glebtv-httpclient-3.2.0 Rakefile