Sha256: 207d4d6cb0ca9db846cdac920427dc931620938093a1d78a3edfa37b4be5a179
Contents?: true
Size: 1.2 KB
Versions: 6
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
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
wiselinks-0.2.0 | Rakefile |
wiselinks-0.1.2 | Rakefile |
wiselinks-0.1.1 | Rakefile |
wiselinks-0.1.0 | Rakefile |
wiselinks-0.0.2 | Rakefile |
wiselinks-0.0.1 | Rakefile |