gist 3.0.2 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +12 -11
- data/lib/gist.rb +1 -2
- data/lib/gist/json.rb +1304 -0
- data/lib/gist/version.rb +1 -1
- data/man/gist.1.html +1 -1
- metadata +24 -42
data/lib/gist/version.rb
CHANGED
data/man/gist.1.html
CHANGED
@@ -152,7 +152,7 @@ information.</p>
|
|
152
152
|
<h2 id="CONFIGURATION">CONFIGURATION</h2>
|
153
153
|
|
154
154
|
<p>You can set a few options in your git config (using <span class="man-ref">git-config<span class="s">(1)</span></span>) to
|
155
|
-
control the default behavior of <a href="gist.1.ron.html"
|
155
|
+
control the default behavior of <a class="man-ref" href="gist.1.ron.html">gist<span class="s">(1)</span></a>.</p>
|
156
156
|
|
157
157
|
<ul>
|
158
158
|
<li><p>gist.private - boolean (yes or no) - Determines whether to make a gist
|
metadata
CHANGED
@@ -1,38 +1,31 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: gist
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.1.0
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 3
|
8
|
-
- 0
|
9
|
-
- 2
|
10
|
-
version: 3.0.2
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Chris Wanstrath
|
14
|
-
-
|
9
|
+
- André Arko
|
15
10
|
autorequire:
|
16
11
|
bindir: bin
|
17
12
|
cert_chain: []
|
18
|
-
|
19
|
-
date: 2012-03-21 00:00:00 -07:00
|
20
|
-
default_executable:
|
13
|
+
date: 2012-03-22 00:00:00.000000000 Z
|
21
14
|
dependencies: []
|
22
|
-
|
23
|
-
|
15
|
+
description: ! " Creates Gists (pastes) on gist.github.com from standard input or\n
|
16
|
+
\ arbitrary files. Can link to your GitHub account, create private gists,\n and
|
17
|
+
enable syntax highlighting.\n"
|
24
18
|
email: andre@arko.net
|
25
|
-
executables:
|
19
|
+
executables:
|
26
20
|
- gist
|
27
21
|
extensions: []
|
28
|
-
|
29
22
|
extra_rdoc_files: []
|
30
|
-
|
31
|
-
files:
|
23
|
+
files:
|
32
24
|
- README.markdown
|
33
25
|
- Rakefile
|
34
26
|
- LICENSE
|
35
27
|
- lib/gist/cacert.pem
|
28
|
+
- lib/gist/json.rb
|
36
29
|
- lib/gist/manpage.rb
|
37
30
|
- lib/gist/standalone.rb
|
38
31
|
- lib/gist/version.rb
|
@@ -41,39 +34,28 @@ files:
|
|
41
34
|
- man/gist.1
|
42
35
|
- man/gist.1.html
|
43
36
|
- man/gist.1.ron
|
44
|
-
has_rdoc: true
|
45
37
|
homepage: http://github.com/defunkt/gist
|
46
38
|
licenses: []
|
47
|
-
|
48
39
|
post_install_message:
|
49
40
|
rdoc_options: []
|
50
|
-
|
51
|
-
require_paths:
|
41
|
+
require_paths:
|
52
42
|
- lib
|
53
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
44
|
none: false
|
55
|
-
requirements:
|
56
|
-
- -
|
57
|
-
- !ruby/object:Gem::Version
|
58
|
-
|
59
|
-
|
60
|
-
- 0
|
61
|
-
version: "0"
|
62
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ! '>='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
50
|
none: false
|
64
|
-
requirements:
|
65
|
-
- -
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
|
68
|
-
segments:
|
69
|
-
- 0
|
70
|
-
version: "0"
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
71
55
|
requirements: []
|
72
|
-
|
73
56
|
rubyforge_project:
|
74
|
-
rubygems_version: 1.
|
57
|
+
rubygems_version: 1.8.11
|
75
58
|
signing_key:
|
76
59
|
specification_version: 3
|
77
60
|
summary: Creates Gists from STDIN or files.
|
78
61
|
test_files: []
|
79
|
-
|