Sha256: 272439974f23f83eae4e4a0e0d193109d5b0189a9cfba5ffd2d9b57b9e8f2282
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true $:.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.email = ["hi@ruby.consulting"] 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.homepage = "https://github.com/janlelis/clipboard" s.license = "MIT" s.metadata = { "rubygems_mfa_required" => "true" } s.requirements = [ "Linux: You need xclip / xsel (X11) or wl-clipboard (Wayland)", "Windows: You 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', '~> 13.0' s.add_development_dependency 'rspec', '~> 3' # s.add_development_dependency 'ffi', '~> 1.9' # s.add_development_dependency 'gtk3', '~> 3' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
clipboard-1.4.1 | clipboard.gemspec |
clipboard-1.4.0 | clipboard.gemspec |