Sha256: 23703eacfcf172c06a904a8e777837733ce23e02c4d3fb222787e865d83a4bde
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
# encoding: utf-8 require 'rake' require 'rake/testtask' require 'rake/rdoctask' desc 'Default: run unit tests.' task :default => :test desc 'Run unit tests.' Rake::TestTask.new(:test) do |t| t.pattern = 'test/**/*_test.rb' t.verbose = true t.ruby_opts << '-rubygems' end desc 'Generate documentation.' Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = '3scale API Management Client' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README') rdoc.rdoc_files.include('lib/**/*.rb') end begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = '3scale_client' gemspec.summary = 'Client for 3scale Web Service Management System API' gemspec.description = <<END This gem allows to easily connect an application that provides a Web Service with the 3scale API Management System to authorize it's users and report the usage. END gemspec.email = 'adam@3scale.net' gemspec.homepage = 'http://www.3scale.net' gemspec.authors = ['Adam Cigánek'] gemspec.add_dependency 'nokogiri' end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
3scale_client-2.2.7 | Rakefile |
3scale_client-2.2.4 | Rakefile |