Sha256: 01c4b4452e515b91005d93faae23be88d54c988a797cb65791e2649829844059

Contents?: true

Size: 1.2 KB

Versions: 19

Compression:

Stored size: 1.2 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "wiselinks"
  gem.homepage = "http://github.com/igor-alexandrov/wiselinks"
  gem.license = "MIT"
  gem.summary = %Q{Wiselinks makes following links and submitting some forms in your web application smarter and faster}  
  gem.email = "igor.alexandrov@gmail.com"
  gem.authors = ['Igor Alexandrov', 'Alexey Solilin', 'Julia Egorova']  
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'  
  test.verbose = true
end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "wiselinks #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
wiselinks-0.5.6 Rakefile
wiselinks-0.5.5 Rakefile
wiselinks-0.5.4 Rakefile
wiselinks-0.5.3 Rakefile
wiselinks-0.5.2 Rakefile
wiselinks-0.5.1 Rakefile
wiselinks-0.5.0 Rakefile
wiselinks-0.4.2 Rakefile
wiselinks-0.4.1 Rakefile
wiselinks-0.4.0 Rakefile
wiselinks-0.3.9 Rakefile
wiselinks-0.3.8 Rakefile
wiselinks-0.3.7 Rakefile
wiselinks-0.3.6 Rakefile
wiselinks-0.3.5 Rakefile
wiselinks-0.3.4 Rakefile
wiselinks-0.3.3 Rakefile
wiselinks-0.3.2 Rakefile
wiselinks-0.3.0 Rakefile