csexton-captured 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +30 -2
- data/lib/captured/file_uploader.rb +1 -0
- metadata +12 -3
data/README.markdown
CHANGED
@@ -4,8 +4,36 @@ captured
|
|
4
4
|
Quick screen capture and sharing application for Mac OS X.
|
5
5
|
|
6
6
|
|
7
|
-
|
8
|
-
|
7
|
+
Install
|
8
|
+
=======
|
9
|
+
|
10
|
+
to install captured:
|
11
|
+
|
12
|
+
$ sudo gem install csexton-captured -s http://gems.github.com
|
13
|
+
$ captured --install
|
14
|
+
$ open -e ~/.captured.yml
|
15
|
+
|
16
|
+
Then you will need to exit that config file with the approprate settings for your server.
|
17
|
+
|
18
|
+
The simplest way is to use the scp type.
|
19
|
+
|
20
|
+
* user - optinal if your remote user is the same as your local user
|
21
|
+
* password - optional if you have setup key pair authentication
|
22
|
+
* host - the remote host name
|
23
|
+
* url - the public url to the remote host+path
|
24
|
+
* path - the remote path to upload to
|
25
|
+
|
26
|
+
upload:
|
27
|
+
type: scp
|
28
|
+
user: user
|
29
|
+
host: example.com
|
30
|
+
path: example.com/captured/
|
31
|
+
url: "http://example.com/captured/"
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
Icons
|
36
|
+
=====
|
9
37
|
|
10
38
|
Icons from the [Crystal Clear](http://www.everaldo.com/crystal/) icon set by [Everaldo Coelho](http://en.wikipedia.org/wiki/Everaldo_Coelho). – The icons are [licensed](http://www.everaldo.com/crystal/?action=license) under the [GNU Lesser General Public License (LGPL)](http://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License).
|
11
39
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csexton-captured
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher Sexton
|
@@ -11,8 +11,17 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2009-06-25 00:00:00 -07:00
|
13
13
|
default_executable: captured
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: net-ssh
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
16
25
|
description:
|
17
26
|
email: csexton@gmail.com
|
18
27
|
executables:
|