Sha256: d54fc367556acf85cacd02483861958e9370820dd0c70e7824451ab3d7c787f5
Contents?: true
Size: 936 Bytes
Versions: 1
Compression:
Stored size: 936 Bytes
Contents
# -*- encoding: utf-8 -*- $:.unshift File.expand_path("../lib", __FILE__) require 'clipboard/version' Gem::Specification.new do |s| s.name = 'clipboard' s.version = Clipboard::VERSION s.authors = ["Jan Lelis"] s.summary = "Access to the clipboard on Linux, MacOS, Windows, and Cygwin." s.description = "Access to the clipboard on Linux, MacOS, Windows, and Cygwin: Clipboard.copy, Clipboard.paste, Clipboard.clear" s.email = "mail@janlelis.de" s.homepage = "http://github.com/janlelis/clipboard" s.license = "MIT" s.requirements = [ "On Linux (or other X), you will need xclip. On debian/ubuntu this is: sudo apt-get install xclip", "On Windows, you will need the ffi gem.", ] s.files = Dir.glob(%w[{lib,spec}/**/*.rb [A-Z]*.txt [A-Z]*.md]) + %w{clipboard.gemspec} s.required_ruby_version = '>= 1.9.3' s.add_development_dependency 'rake', '~> 11' s.add_development_dependency 'rspec', '~> 3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
clipboard-1.1.1 | clipboard.gemspec |