copier 1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +24 -0
- metadata +63 -0
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# Copier
|
2
|
+
|
3
|
+
$ gem install copier
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
require 'copier'
|
8
|
+
Copier('text')
|
9
|
+
|
10
|
+
run the code and then you can paste `text` by Cmd-v on Mac OS X, Ctrl-v on Windows, and as well on other platforms.
|
11
|
+
|
12
|
+
## Platform
|
13
|
+
|
14
|
+
This library supports the following platforms. I'm always welcome patches for supporting other platforms, including spec.
|
15
|
+
|
16
|
+
* Mac OS X
|
17
|
+
* Windows (cygwin)
|
18
|
+
|
19
|
+
## development
|
20
|
+
|
21
|
+
issues
|
22
|
+
|
23
|
+
* no GNOME support yet
|
24
|
+
* no KDE support yet
|
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: copier
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 0
|
8
|
+
version: "1.0"
|
9
|
+
platform: ruby
|
10
|
+
authors:
|
11
|
+
- ujihisa
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
|
16
|
+
date: 2010-07-27 00:00:00 -07:00
|
17
|
+
default_executable:
|
18
|
+
dependencies: []
|
19
|
+
|
20
|
+
description: A clipboard manager on arbitrary platforms
|
21
|
+
email: ujihisa at gmail.com
|
22
|
+
executables: []
|
23
|
+
|
24
|
+
extensions: []
|
25
|
+
|
26
|
+
extra_rdoc_files:
|
27
|
+
- README.md
|
28
|
+
files:
|
29
|
+
- README.md
|
30
|
+
has_rdoc: true
|
31
|
+
homepage: https://github.com/ujihisa/copier
|
32
|
+
licenses: []
|
33
|
+
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
version: "0"
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
|
+
none: false
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
segments:
|
53
|
+
- 0
|
54
|
+
version: "0"
|
55
|
+
requirements: []
|
56
|
+
|
57
|
+
rubyforge_project:
|
58
|
+
rubygems_version: 1.3.7
|
59
|
+
signing_key:
|
60
|
+
specification_version: 3
|
61
|
+
summary: A clipboard manager on arbitrary platforms
|
62
|
+
test_files: []
|
63
|
+
|