Sha256: 39e56f2cdf4a92d772b59b7e21622b60e65d737ff2fce6d3ea0785ab2434b4cc
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "clipboard" gem.summary = %Q{Access the clipboard on all systems} gem.description = %Q{Access the clipboard on all systems (Clipboard.copy & Clipboard.paste)} gem.email = "mail@janlelis.de" gem.homepage = "http://github.com/janlelis/clipboard" gem.authors = ["Jan Lelis"] gem.add_development_dependency "jeweler", ">= 0" gem.add_dependency('zucker', '>= 7') gem.requirements << 'on linux (or other X), you need xclip. Install it on debian/ubuntu with sudo apt-get install xclip' end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'doc' rdoc.title = "clipboard #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
clipboard-0.9.1 | Rakefile |
clipboard-0.9.0 | Rakefile |
clipboard-0.8.4 | Rakefile |
clipboard-0.8.3 | Rakefile |