cloudapp 0.0.8 → 0.0.9

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/README.md CHANGED
@@ -28,6 +28,12 @@ goal of `cloudapp` is to be simple and Unix-friendly.
28
28
  - Bookmark a link: `cloudapp bookmark http://getcloudapp.com`
29
29
  - Share a file: `cloudapp upload screenshot.png`
30
30
  - List newest drops: `cloudapp list [--count=5]`
31
+ - Copy a new drop's link (OS X): `cloudapp bookmark http://douglasadams.com | pbcopy`
32
+ - Output drops in CSV: `cloudapp --format=csv list`
33
+
34
+ More examples can be found on [the man page][man-page].
35
+
36
+ [man-page]: http://cloudapp.github.com/cloudapp
31
37
 
32
38
  ### Wish List
33
39
 
@@ -39,7 +45,7 @@ Some baseic features that should be added:
39
45
  A little more flare would be swell.
40
46
 
41
47
  - Download a drop: `cloudapp download http://cl.ly/abc123`
42
- - List specific columns: `cloudapp list --columns=name,views,link`
48
+ - Output specific columns: `cloudapp list --columns=name,views,link`
43
49
  - Handle input from STDIN: `pbpaste | cloudapp bookmark -`
44
50
  - Archive and share several files: `cloudapp upload --archive *.png`
45
51
  - Encrypt and share a file: `cloudapp upload --encrypt launch_codes.txt`
data/cloudapp.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'cloudapp'
16
- s.version = '0.0.8'
16
+ s.version = '0.0.9'
17
17
  s.date = '2012-02-08'
18
18
  s.rubyforge_project = 'cloudapp'
19
19
 
data/lib/cloudapp.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module CloudApp
2
- VERSION = '0.0.8'
2
+ VERSION = '0.0.9'
3
3
  end
data/man/cloudapp.1 CHANGED
@@ -7,12 +7,7 @@
7
7
  \fBcloudapp\fR \- All the pleasures of CloudApp now at your terminal
8
8
  .
9
9
  .SH "SYNOPSIS"
10
- .
11
- .nf
12
-
13
- cloudapp [\-\-email=<email>] [\-\-password=<password>] <command> [<args>]
14
- .
15
- .fi
10
+ \fBcloudapp\fR [\fB\-\-email\fR=\fIemail\fR] [\fB\-\-password\fR=\fIpassword\fR] \fIcommand\fR [\fIargs\fR]
16
11
  .
17
12
  .SH "DESCRIPTION"
18
13
  \fBcloudapp\fR is a simple, Unix\-friendly tool for CloudApp meant to augment the Mac and Web apps\. Sometimes it\'s more convenient to share without leaving the terminal and other times it\'s the only tool available\.
@@ -20,28 +15,32 @@ cloudapp [\-\-email=<email>] [\-\-password=<password>] <command> [<args>]
20
15
  .SH "OPTIONS"
21
16
  .
22
17
  .TP
23
- \fB\-\-email=<email>\fR
24
- CloudApp account email address
18
+ \fB\-\-email\fR=\fIemail\fR
19
+ Use \fIemail\fR for CloudApp account credentials\.
25
20
  .
26
21
  .TP
27
- \fB\-\-password=<password>\fR
28
- CloudApp account password
22
+ \fB\-\-password\fR=\fIpassword\fR
23
+ Use \fIpassword\fR for CloudApp account credentials\.
24
+ .
25
+ .TP
26
+ \fB\-f\fR \fIformat\fR, \fB\-\-format\fR=\fIformat\fR
27
+ Output using either \fBpretty\fR or \fBcsv\fR format\. Default is \fBpretty\fR unless output is piped to anther program then \fBcsv\fR becomes the default\.
29
28
  .
30
29
  .SH "EXAMPLES"
31
- List the latest 20 drops:
30
+ List newest 20 drops:
32
31
  .
33
32
  .IP "" 4
34
33
  .
35
34
  .nf
36
35
 
37
36
  $ cloudapp list
38
- Name Link Views
39
- favicon\.ico http://cl\.ly/0P2\.\.\. 2
40
- The Hitchhiker\'s Guide http://cl\.ly/3I2\.\.\. 3
41
- CloudApp 1\.5 Released http://cl\.ly/0s1\.\.\. 3
42
- Cover\.jpeg http://cl\.ly/1x2\.\.\. 0
43
- Chapter 1\.md http://cl\.ly/3U3\.\.\. 6
44
- CloudApp http://cl\.ly/2O2\.\.\. 2
37
+ Name Link Views
38
+ favicon\.ico http://cl\.ly/0P28\.\.\. 3
39
+ The Hitchhiker\'s Guide http://cl\.ly/3I28\.\.\. 4
40
+ CloudApp 1\.5 Released http://cl\.ly/0s1o\.\.\. 4
41
+ Cover\.jpeg http://cl\.ly/1x20\.\.\. 1
42
+ Chapter 1\.md http://cl\.ly/3U3d\.\.\. 7
43
+ CloudApp http://cl\.ly/2O2J\.\.\. 3
45
44
  \.\.\.
46
45
  .
47
46
  .fi
@@ -49,20 +48,38 @@ $ cloudapp list
49
48
  .IP "" 0
50
49
  .
51
50
  .P
52
- List the latest 5 drops:
51
+ List newest 5 drops:
53
52
  .
54
53
  .IP "" 4
55
54
  .
56
55
  .nf
57
56
 
58
- cloudapp list \-\-count=5
59
57
  $ cloudapp list \-\-count=5
60
- Name Link Views
61
- favicon\.ico http://cl\.ly/0P2\.\.\. 2
62
- The Hitchhiker\'s Guide http://cl\.ly/3I2\.\.\. 3
63
- CloudApp 1\.5 Released http://cl\.ly/0s1\.\.\. 3
64
- Cover\.jpeg http://cl\.ly/1x2\.\.\. 0
65
- Chapter 1\.md http://cl\.ly/3U3\.\.\. 6
58
+ Name Link Views
59
+ favicon\.ico http://cl\.ly/0P28\.\.\. 3
60
+ The Hitchhiker\'s Guide http://cl\.ly/3I28\.\.\. 4
61
+ CloudApp 1\.5 Released http://cl\.ly/0s1o\.\.\. 4
62
+ Cover\.jpeg http://cl\.ly/1x20\.\.\. 1
63
+ Chapter 1\.md http://cl\.ly/3U3d\.\.\. 7
64
+ .
65
+ .fi
66
+ .
67
+ .IP "" 0
68
+ .
69
+ .P
70
+ List newest 5 drops in CSV format:
71
+ .
72
+ .IP "" 4
73
+ .
74
+ .nf
75
+
76
+ $ cloudapp \-\-format=csv list \-\-count=5
77
+ Name,Link,Views
78
+ favicon\.ico,http://cl\.ly/0P28\.\.\.,3
79
+ The Hitchhiker\'s Guide to the Galaxy,http://cl\.ly/3I28\.\.\.,4
80
+ 2011\-05\-03\-cloudapp\-1\.5\-released\.md,http://cl\.ly/0s1o\.\.\.,4
81
+ Cover\.jpeg,http://cl\.ly/1x20\.\.\.,1
82
+ Chapter 1\.md,http://cl\.ly/3U3d\.\.\.,7
66
83
  .
67
84
  .fi
68
85
  .
@@ -76,7 +93,7 @@ Share a new bookmark to "http://douglasadams\.com":
76
93
  .nf
77
94
 
78
95
  $ cloudapp bookmark http://douglasadams\.com
79
- Bookmarking http://douglasadams\.com\.\.\. http://cl\.ly/1y0j403g3D0c0X1G0R3m
96
+ Bookmarking http://douglasadams\.com\.\.\. http://cl\.ly/1y0j403g3D0c0X1G0R3m
80
97
  .
81
98
  .fi
82
99
  .
@@ -90,7 +107,35 @@ Share the file "screenshot\.png":
90
107
  .nf
91
108
 
92
109
  $ cloudapp upload screenshot\.png
93
- Uploading screenshot\.png\.\.\. http://cl\.ly/040u2o3X1w0z1z3n2T04
110
+ Uploading screenshot\.png\.\.\. http://cl\.ly/040u2o3X1w0z1z3n2T04
111
+ .
112
+ .fi
113
+ .
114
+ .IP "" 0
115
+ .
116
+ .P
117
+ Share a new bookmark or file and copy the URL to the clipboard (OS X):
118
+ .
119
+ .IP "" 4
120
+ .
121
+ .nf
122
+
123
+ $ cloudapp bookmark http://douglasadams\.com | pbcopy
124
+ $ cloudapp upload screenshot\.png | pbcopy
125
+ .
126
+ .fi
127
+ .
128
+ .IP "" 0
129
+ .
130
+ .P
131
+ Share a new bookmark and output only the URL:
132
+ .
133
+ .IP "" 4
134
+ .
135
+ .nf
136
+
137
+ $ cloudapp \-\-format=csv bookmark http://douglasadams\.com
138
+ http://cl\.ly/1y0j403g3D0c0X1G0R3m
94
139
  .
95
140
  .fi
96
141
  .
data/man/cloudapp.1.html CHANGED
@@ -41,12 +41,6 @@
41
41
  ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
42
  ol.man-decor li.tr {text-align:right;float:right}
43
43
  </style>
44
- <style type='text/css' media='all'>
45
- /* style: toc */
46
- .man-navigation {display:block !important;position:fixed;top:0;left:113ex;height:100%;width:100%;padding:48px 0 0 0;border-left:1px solid #dbdbdb;background:#eee}
47
- .man-navigation a,.man-navigation a:hover,.man-navigation a:link,.man-navigation a:visited {display:block;margin:0;padding:5px 2px 5px 30px;color:#999;text-decoration:none}
48
- .man-navigation a:hover {color:#111;text-decoration:underline}
49
- </style>
50
44
  </head>
51
45
  <!--
52
46
  The following styles are deprecated and will be removed at some point:
@@ -81,8 +75,7 @@
81
75
 
82
76
  <h2 id="SYNOPSIS">SYNOPSIS</h2>
83
77
 
84
- <pre><code>cloudapp [--email=&lt;email>] [--password=&lt;password>] &lt;command> [&lt;args>]
85
- </code></pre>
78
+ <p><code>cloudapp</code> [<code>--email</code>=<var>email</var>] [<code>--password</code>=<var>password</var>] <var>command</var> [<var>args</var>]</p>
86
79
 
87
80
  <h2 id="DESCRIPTION">DESCRIPTION</h2>
88
81
 
@@ -93,48 +86,72 @@ terminal and other times it's the only tool available.</p>
93
86
  <h2 id="OPTIONS">OPTIONS</h2>
94
87
 
95
88
  <dl>
96
- <dt><code>--email=&lt;email></code></dt><dd><p>CloudApp account email address</p></dd>
97
- <dt><code>--password=&lt;password></code></dt><dd><p>CloudApp account password</p></dd>
89
+ <dt><code>--email</code>=<var>email</var></dt><dd><p>Use <var>email</var> for CloudApp account credentials.</p></dd>
90
+ <dt><code>--password</code>=<var>password</var></dt><dd><p>Use <var>password</var> for CloudApp account credentials.</p></dd>
91
+ <dt><code>-f</code> <var>format</var>, <code>--format</code>=<var>format</var></dt><dd><p>Output using either <strong>pretty</strong> or <strong>csv</strong> format. Default is <strong>pretty</strong>
92
+ unless output is piped to anther program then <strong>csv</strong> becomes the default.</p></dd>
98
93
  </dl>
99
94
 
100
95
 
101
96
  <h2 id="EXAMPLES">EXAMPLES</h2>
102
97
 
103
- <p>List the latest 20 drops:</p>
98
+ <p>List newest 20 drops:</p>
104
99
 
105
100
  <pre><code>$ cloudapp list
106
- Name Link Views
107
- favicon.ico http://cl.ly/0P2... 2
108
- The Hitchhiker's Guide http://cl.ly/3I2... 3
109
- CloudApp 1.5 Released http://cl.ly/0s1... 3
110
- Cover.jpeg http://cl.ly/1x2... 0
111
- Chapter 1.md http://cl.ly/3U3... 6
112
- CloudApp http://cl.ly/2O2... 2
101
+ Name Link Views
102
+ favicon.ico http://cl.ly/0P28... 3
103
+ The Hitchhiker's Guide http://cl.ly/3I28... 4
104
+ CloudApp 1.5 Released http://cl.ly/0s1o... 4
105
+ Cover.jpeg http://cl.ly/1x20... 1
106
+ Chapter 1.md http://cl.ly/3U3d... 7
107
+ CloudApp http://cl.ly/2O2J... 3
113
108
  ...
114
109
  </code></pre>
115
110
 
116
- <p>List the latest 5 drops:</p>
111
+ <p>List newest 5 drops:</p>
112
+
113
+ <pre><code>$ cloudapp list --count=5
114
+ Name Link Views
115
+ favicon.ico http://cl.ly/0P28... 3
116
+ The Hitchhiker's Guide http://cl.ly/3I28... 4
117
+ CloudApp 1.5 Released http://cl.ly/0s1o... 4
118
+ Cover.jpeg http://cl.ly/1x20... 1
119
+ Chapter 1.md http://cl.ly/3U3d... 7
120
+ </code></pre>
121
+
122
+ <p>List newest 5 drops in CSV format:</p>
117
123
 
118
- <pre><code>cloudapp list --count=5
119
- $ cloudapp list --count=5
120
- Name Link Views
121
- favicon.ico http://cl.ly/0P2... 2
122
- The Hitchhiker's Guide http://cl.ly/3I2... 3
123
- CloudApp 1.5 Released http://cl.ly/0s1... 3
124
- Cover.jpeg http://cl.ly/1x2... 0
125
- Chapter 1.md http://cl.ly/3U3... 6
124
+ <pre><code>$ cloudapp --format=csv list --count=5
125
+ Name,Link,Views
126
+ favicon.ico,http://cl.ly/0P28...,3
127
+ The Hitchhiker's Guide to the Galaxy,http://cl.ly/3I28...,4
128
+ 2011-05-03-cloudapp-1.5-released.md,http://cl.ly/0s1o...,4
129
+ Cover.jpeg,http://cl.ly/1x20...,1
130
+ Chapter 1.md,http://cl.ly/3U3d...,7
126
131
  </code></pre>
127
132
 
128
133
  <p>Share a new bookmark to "http://douglasadams.com":</p>
129
134
 
130
135
  <pre><code>$ cloudapp bookmark http://douglasadams.com
131
- Bookmarking http://douglasadams.com... http://cl.ly/1y0j403g3D0c0X1G0R3m
136
+ Bookmarking http://douglasadams.com... http://cl.ly/1y0j403g3D0c0X1G0R3m
132
137
  </code></pre>
133
138
 
134
139
  <p>Share the file "screenshot.png":</p>
135
140
 
136
141
  <pre><code>$ cloudapp upload screenshot.png
137
- Uploading screenshot.png... http://cl.ly/040u2o3X1w0z1z3n2T04
142
+ Uploading screenshot.png... http://cl.ly/040u2o3X1w0z1z3n2T04
143
+ </code></pre>
144
+
145
+ <p>Share a new bookmark or file and copy the URL to the clipboard (OS X):</p>
146
+
147
+ <pre><code>$ cloudapp bookmark http://douglasadams.com | pbcopy
148
+ $ cloudapp upload screenshot.png | pbcopy
149
+ </code></pre>
150
+
151
+ <p>Share a new bookmark and output only the URL:</p>
152
+
153
+ <pre><code>$ cloudapp --format=csv bookmark http://douglasadams.com
154
+ http://cl.ly/1y0j403g3D0c0X1G0R3m
138
155
  </code></pre>
139
156
 
140
157
  <h2 id="SECURITY-CONSIDERATIONS">SECURITY CONSIDERATIONS</h2>
data/man/cloudapp.1.ronn CHANGED
@@ -3,7 +3,7 @@ cloudapp(1) -- All the pleasures of CloudApp now at your terminal
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- cloudapp [--email=<email>] [--password=<password>] <command> [<args>]
6
+ `cloudapp` [`--email`=<email>] [`--password`=<password>] <command> [<args>]
7
7
 
8
8
  ## DESCRIPTION
9
9
 
@@ -13,46 +13,69 @@ terminal and other times it's the only tool available.
13
13
 
14
14
  ## OPTIONS
15
15
 
16
- * `--email=<email>`:
17
- CloudApp account email address
16
+ * `--email`=<email>:
17
+ Use <email> for CloudApp account credentials.
18
18
 
19
- * `--password=<password>`:
20
- CloudApp account password
19
+ * `--password`=<password>:
20
+ Use <password> for CloudApp account credentials.
21
+
22
+ * `-f` <format>, `--format`=<format>:
23
+ Output using either **pretty** or **csv** format. Default is **pretty**
24
+ unless output is piped to anther program then **csv** becomes the default.
21
25
 
22
26
  ## EXAMPLES
23
27
 
24
- List the latest 20 drops:
28
+ List newest 20 drops:
25
29
 
26
30
  $ cloudapp list
27
- Name Link Views
28
- favicon.ico http://cl.ly/0P2... 2
29
- The Hitchhiker's Guide http://cl.ly/3I2... 3
30
- CloudApp 1.5 Released http://cl.ly/0s1... 3
31
- Cover.jpeg http://cl.ly/1x2... 0
32
- Chapter 1.md http://cl.ly/3U3... 6
33
- CloudApp http://cl.ly/2O2... 2
31
+ Name Link Views
32
+ favicon.ico http://cl.ly/0P28... 3
33
+ The Hitchhiker's Guide http://cl.ly/3I28... 4
34
+ CloudApp 1.5 Released http://cl.ly/0s1o... 4
35
+ Cover.jpeg http://cl.ly/1x20... 1
36
+ Chapter 1.md http://cl.ly/3U3d... 7
37
+ CloudApp http://cl.ly/2O2J... 3
34
38
  ...
35
39
 
36
- List the latest 5 drops:
40
+ List newest 5 drops:
37
41
 
38
- cloudapp list --count=5
39
42
  $ cloudapp list --count=5
40
- Name Link Views
41
- favicon.ico http://cl.ly/0P2... 2
42
- The Hitchhiker's Guide http://cl.ly/3I2... 3
43
- CloudApp 1.5 Released http://cl.ly/0s1... 3
44
- Cover.jpeg http://cl.ly/1x2... 0
45
- Chapter 1.md http://cl.ly/3U3... 6
43
+ Name Link Views
44
+ favicon.ico http://cl.ly/0P28... 3
45
+ The Hitchhiker's Guide http://cl.ly/3I28... 4
46
+ CloudApp 1.5 Released http://cl.ly/0s1o... 4
47
+ Cover.jpeg http://cl.ly/1x20... 1
48
+ Chapter 1.md http://cl.ly/3U3d... 7
49
+
50
+ List newest 5 drops in CSV format:
51
+
52
+ $ cloudapp --format=csv list --count=5
53
+ Name,Link,Views
54
+ favicon.ico,http://cl.ly/0P28...,3
55
+ The Hitchhiker's Guide to the Galaxy,http://cl.ly/3I28...,4
56
+ 2011-05-03-cloudapp-1.5-released.md,http://cl.ly/0s1o...,4
57
+ Cover.jpeg,http://cl.ly/1x20...,1
58
+ Chapter 1.md,http://cl.ly/3U3d...,7
46
59
 
47
60
  Share a new bookmark to "http://douglasadams.com":
48
61
 
49
62
  $ cloudapp bookmark http://douglasadams.com
50
- Bookmarking http://douglasadams.com... http://cl.ly/1y0j403g3D0c0X1G0R3m
63
+ Bookmarking http://douglasadams.com... http://cl.ly/1y0j403g3D0c0X1G0R3m
51
64
 
52
65
  Share the file "screenshot.png":
53
66
 
54
67
  $ cloudapp upload screenshot.png
55
- Uploading screenshot.png... http://cl.ly/040u2o3X1w0z1z3n2T04
68
+ Uploading screenshot.png... http://cl.ly/040u2o3X1w0z1z3n2T04
69
+
70
+ Share a new bookmark or file and copy the URL to the clipboard (OS X):
71
+
72
+ $ cloudapp bookmark http://douglasadams.com | pbcopy
73
+ $ cloudapp upload screenshot.png | pbcopy
74
+
75
+ Share a new bookmark and output only the URL:
76
+
77
+ $ cloudapp --format=csv bookmark http://douglasadams.com
78
+ http://cl.ly/1y0j403g3D0c0X1G0R3m
56
79
 
57
80
 
58
81
  ## SECURITY CONSIDERATIONS
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-02-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: addressable
16
- requirement: &70172488832040 !ruby/object:Gem::Requirement
16
+ requirement: &70358552476780 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70172488832040
24
+ version_requirements: *70358552476780
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: faraday
27
- requirement: &70172488829460 !ruby/object:Gem::Requirement
27
+ requirement: &70358552474200 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 0.8.0.rc2
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70172488829460
35
+ version_requirements: *70358552474200
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: formatador
38
- requirement: &70172488828800 !ruby/object:Gem::Requirement
38
+ requirement: &70358552473540 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70172488828800
46
+ version_requirements: *70358552473540
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: gli
49
- requirement: &70172488828240 !ruby/object:Gem::Requirement
49
+ requirement: &70358552472980 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *70172488828240
57
+ version_requirements: *70358552472980
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: leadlight
60
- requirement: &70172488827560 !ruby/object:Gem::Requirement
60
+ requirement: &70358552472300 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: '0'
66
66
  type: :runtime
67
67
  prerelease: false
68
- version_requirements: *70172488827560
68
+ version_requirements: *70358552472300
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: typhoeus
71
- requirement: &70172488827100 !ruby/object:Gem::Requirement
71
+ requirement: &70358552471840 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,10 +76,10 @@ dependencies:
76
76
  version: '0'
77
77
  type: :runtime
78
78
  prerelease: false
79
- version_requirements: *70172488827100
79
+ version_requirements: *70358552471840
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: rake
82
- requirement: &70172488826680 !ruby/object:Gem::Requirement
82
+ requirement: &70358552471420 !ruby/object:Gem::Requirement
83
83
  none: false
84
84
  requirements:
85
85
  - - ! '>='
@@ -87,10 +87,10 @@ dependencies:
87
87
  version: '0'
88
88
  type: :development
89
89
  prerelease: false
90
- version_requirements: *70172488826680
90
+ version_requirements: *70358552471420
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: ronn
93
- requirement: &70172488826220 !ruby/object:Gem::Requirement
93
+ requirement: &70358552470980 !ruby/object:Gem::Requirement
94
94
  none: false
95
95
  requirements:
96
96
  - - ! '>='
@@ -98,10 +98,10 @@ dependencies:
98
98
  version: '0'
99
99
  type: :development
100
100
  prerelease: false
101
- version_requirements: *70172488826220
101
+ version_requirements: *70358552470980
102
102
  - !ruby/object:Gem::Dependency
103
103
  name: rspec
104
- requirement: &70172488825780 !ruby/object:Gem::Requirement
104
+ requirement: &70358552470540 !ruby/object:Gem::Requirement
105
105
  none: false
106
106
  requirements:
107
107
  - - ! '>='
@@ -109,10 +109,10 @@ dependencies:
109
109
  version: '0'
110
110
  type: :development
111
111
  prerelease: false
112
- version_requirements: *70172488825780
112
+ version_requirements: *70358552470540
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: vcr
115
- requirement: &70172488825200 !ruby/object:Gem::Requirement
115
+ requirement: &70358552469960 !ruby/object:Gem::Requirement
116
116
  none: false
117
117
  requirements:
118
118
  - - ~>
@@ -120,10 +120,10 @@ dependencies:
120
120
  version: 2.0.0.rc1
121
121
  type: :development
122
122
  prerelease: false
123
- version_requirements: *70172488825200
123
+ version_requirements: *70358552469960
124
124
  - !ruby/object:Gem::Dependency
125
125
  name: webmock
126
- requirement: &70172488824760 !ruby/object:Gem::Requirement
126
+ requirement: &70358552469520 !ruby/object:Gem::Requirement
127
127
  none: false
128
128
  requirements:
129
129
  - - ! '>='
@@ -131,7 +131,7 @@ dependencies:
131
131
  version: '0'
132
132
  type: :development
133
133
  prerelease: false
134
- version_requirements: *70172488824760
134
+ version_requirements: *70358552469520
135
135
  description: Experience all the pleasures of sharing with CloudApp now in your terminal.
136
136
  email: larry@marburger.cc
137
137
  executables: