clipboard 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +3 -0
- data/Gemfile.lock +1 -1
- data/clipboard.gemspec +4 -1
- data/lib/clipboard.rb +1 -2
- data/lib/clipboard/version.rb +3 -0
- data/spec/spec_helper.rb +1 -1
- metadata +5 -5
- data/VERSION +0 -1
data/CHANGELOG.rdoc
CHANGED
data/Gemfile.lock
CHANGED
data/clipboard.gemspec
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
require 'rubygems' unless defined? Gem
|
|
3
3
|
|
|
4
|
+
$:.unshift File.expand_path("../lib", __FILE__)
|
|
5
|
+
require 'clipboard/version'
|
|
6
|
+
|
|
4
7
|
Gem::Specification.new do |s|
|
|
5
8
|
s.name = 'clipboard'
|
|
6
|
-
s.version =
|
|
9
|
+
s.version = Clipboard::VERSION
|
|
7
10
|
|
|
8
11
|
s.authors = ["Jan Lelis"]
|
|
9
12
|
s.summary = 'Easy access to the clipboard on Linux, MacOS and Windows.'
|
data/lib/clipboard.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: clipboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-04-
|
|
12
|
+
date: 2013-04-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -51,6 +51,7 @@ extensions: []
|
|
|
51
51
|
extra_rdoc_files: []
|
|
52
52
|
files:
|
|
53
53
|
- lib/clipboard.rb
|
|
54
|
+
- lib/clipboard/version.rb
|
|
54
55
|
- lib/clipboard/linux.rb
|
|
55
56
|
- lib/clipboard/file.rb
|
|
56
57
|
- lib/clipboard/mac.rb
|
|
@@ -63,7 +64,6 @@ files:
|
|
|
63
64
|
- LICENSE
|
|
64
65
|
- Gemfile.lock
|
|
65
66
|
- README.rdoc
|
|
66
|
-
- VERSION
|
|
67
67
|
- CHANGELOG.rdoc
|
|
68
68
|
- clipboard.gemspec
|
|
69
69
|
- .gemtest
|
|
@@ -84,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
84
84
|
version: '0'
|
|
85
85
|
segments:
|
|
86
86
|
- 0
|
|
87
|
-
hash:
|
|
87
|
+
hash: -2900445585739942679
|
|
88
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
89
|
none: false
|
|
90
90
|
requirements:
|
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
93
|
version: '0'
|
|
94
94
|
segments:
|
|
95
95
|
- 0
|
|
96
|
-
hash:
|
|
96
|
+
hash: -2900445585739942679
|
|
97
97
|
requirements:
|
|
98
98
|
- ! 'On Linux (or other X), you need xclip. You can install it on debian/ubuntu with:
|
|
99
99
|
sudo apt-get install xclip'
|
data/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.0.2
|