Sha256: aae70ebe585ab6d1a75e50372925d90c05b38ebe06a1c46d74cbefedc2034c7b
Contents?: true
Size: 1007 Bytes
Versions: 1
Compression:
Stored size: 1007 Bytes
Contents
$:.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 = "https://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' # s.add_development_dependency 'ffi', '~> 1.9' # s.add_development_dependency 'gtk3', '~> 3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
clipboard-1.3.0 | clipboard.gemspec |