jist 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/.rspec +3 -0
- data/Gemfile +3 -0
- data/LICENSE.MIT +7 -0
- data/README.md +161 -0
- data/Rakefile +6 -0
- data/bin/jist +3 -3
- data/jist.gemspec +20 -0
- data/lib/jist.rb +1 -1
- data/spec/clipboard_spec.rb +34 -0
- data/spec/spec_helper.rb +13 -0
- metadata +14 -4
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE.MIT
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2012 Conrad Irwin <conrad.irwin@gmail.com>
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
Jist is a gem that allows you to publish a [gist](https://gist.github.com) from Ruby.
|
2
|
+
|
3
|
+
# Installation
|
4
|
+
|
5
|
+
As with all ruby gems, you can install Jist (assuming you have ruby and rubygems) with:
|
6
|
+
|
7
|
+
```shell
|
8
|
+
$ gem install jist
|
9
|
+
```
|
10
|
+
|
11
|
+
If you want to use the library in your application, and you're using Bundler. Add the
|
12
|
+
following to your Gemfile.
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
source :rubygems
|
16
|
+
gem 'jist'
|
17
|
+
```
|
18
|
+
|
19
|
+
# Command
|
20
|
+
|
21
|
+
The jist gem provides a `jist` command that you can use from your terminal to
|
22
|
+
upload content to https://gist.github.com/.
|
23
|
+
|
24
|
+
It's easy to use. To upload the contents of `a.rb` just:
|
25
|
+
|
26
|
+
```shell
|
27
|
+
$ jist a.rb
|
28
|
+
https://gist.github.com/0d07bc98c139810a4075
|
29
|
+
```
|
30
|
+
|
31
|
+
By default it reads from STDIN, and you can set a filename with `-f`.
|
32
|
+
|
33
|
+
```shell
|
34
|
+
$ jist -f test.rb <a.rb
|
35
|
+
https://gist.github.com/7db51bb5f4f35c480fc8
|
36
|
+
```
|
37
|
+
|
38
|
+
Alternatively, you can just paste from the clipboard:
|
39
|
+
|
40
|
+
```shell
|
41
|
+
$ jist -P
|
42
|
+
https://gist.github.com/6a330a11a0db8e52a6ee
|
43
|
+
```
|
44
|
+
|
45
|
+
Use `-p` to make the gist public and `-d` to add a description.
|
46
|
+
```shell
|
47
|
+
$ jist -p -d "Random rbx bug" a.rb
|
48
|
+
https://gist.github.com/2977722
|
49
|
+
```
|
50
|
+
|
51
|
+
You can update existing gists with `-u`:
|
52
|
+
|
53
|
+
```shell
|
54
|
+
$ jist lib/jist.rb bin/jist -u 42f2c239d2eb57299408
|
55
|
+
https://gist.github.com/42f2c239d2eb57299408
|
56
|
+
```
|
57
|
+
|
58
|
+
If you'd like to copy the resulting URL to your clipboard, use `-c`.
|
59
|
+
|
60
|
+
```shell
|
61
|
+
$ jist -c <a.rb
|
62
|
+
https://gist.github.com/7db51bb5f4f35c480fc8
|
63
|
+
```
|
64
|
+
|
65
|
+
And you can just ask jist to open a browser window directly with `-o`.
|
66
|
+
|
67
|
+
```shell
|
68
|
+
$ jist -o <a.rb
|
69
|
+
https://gist.github.com/7db51bb5f4f35c480fc8
|
70
|
+
```
|
71
|
+
|
72
|
+
See `jist --help` for more detail.
|
73
|
+
|
74
|
+
## Login
|
75
|
+
|
76
|
+
If you want to associate your gists with your github account, you need to login
|
77
|
+
with jist. It doesn't store your username and password, it just uses them to get
|
78
|
+
an OAuth2 token (with the "gist" permission).
|
79
|
+
|
80
|
+
```shell
|
81
|
+
jist --login
|
82
|
+
Obtaining OAuth2 access_token from github.
|
83
|
+
Github username: ConradIrwin
|
84
|
+
Github password:
|
85
|
+
Success! https://github.com/settings/applications
|
86
|
+
```
|
87
|
+
|
88
|
+
This token is stored in `~/.jist` and used for all future gisting. If you need to
|
89
|
+
you can revoke it from https://github.com/settings/applications, or just delete the
|
90
|
+
file.
|
91
|
+
|
92
|
+
After you've done this, you can still upload gists anonymously with `-a`.
|
93
|
+
|
94
|
+
```shell
|
95
|
+
jist -a a.rb
|
96
|
+
https://gist.github.com/6bf7ec379fc9119b1f15
|
97
|
+
```
|
98
|
+
|
99
|
+
# Library
|
100
|
+
|
101
|
+
You can also use Jist as a library from inside your ruby code:
|
102
|
+
|
103
|
+
```ruby
|
104
|
+
Jist.gist("Look.at(:my => 'awesome').code")
|
105
|
+
```
|
106
|
+
|
107
|
+
If you need more advanced features you can also pass:
|
108
|
+
|
109
|
+
* `:access_token` to authenticate using OAuth2 (default is `File.read("~/.jist")).
|
110
|
+
* `:filename` to change the syntax highlighting (default is `a.rb`).
|
111
|
+
* `:public` if you want your gist to have a guessable url.
|
112
|
+
* `:description` to add a description to your gist.
|
113
|
+
* `:update` to update an existing gist (can be a URL or an id).
|
114
|
+
* `:anonymous` to submit an anonymous gist (default is false).
|
115
|
+
* `:copy` to copy the resulting URL to the clipboard (default is false).
|
116
|
+
* `:open` to open the resulting URL in a browser (default is false).
|
117
|
+
|
118
|
+
NOTE: The access_token must have the "gist" scope.
|
119
|
+
|
120
|
+
If you want to upload multiple files in the same gist, you can:
|
121
|
+
|
122
|
+
```ruby
|
123
|
+
Jist.multi_gist("a.rb" => "Foo.bar", "a.py" => "Foo.bar")
|
124
|
+
```
|
125
|
+
|
126
|
+
If you'd rather use jist's builtin access_token, then you can force the user to
|
127
|
+
obtain one by calling:
|
128
|
+
|
129
|
+
```ruby
|
130
|
+
Jist.login!
|
131
|
+
```
|
132
|
+
|
133
|
+
This will take them through the process of obtaining an OAuth2 token, and storing it
|
134
|
+
in `~/.jist`, where it can later be read by `Jist.gist`
|
135
|
+
|
136
|
+
Configuration
|
137
|
+
=============
|
138
|
+
|
139
|
+
If you'd like `-o` or `-c` to be the default when you use the jist executable, add an
|
140
|
+
alias to your `~/.bashrc` (or equivalent). For example:
|
141
|
+
|
142
|
+
```ruby
|
143
|
+
alias jist='jist -c'
|
144
|
+
```
|
145
|
+
|
146
|
+
If you'd prefer jist to open a different browser, then you can export the BROWSER
|
147
|
+
environment variable:
|
148
|
+
|
149
|
+
```ruby
|
150
|
+
export BROWSER=google-chrome
|
151
|
+
```
|
152
|
+
|
153
|
+
If clipboard or browser integration don't work on your platform, please file a bug or
|
154
|
+
(more ideally) a pull request.
|
155
|
+
|
156
|
+
Meta-fu
|
157
|
+
=======
|
158
|
+
|
159
|
+
I wrote this because the `gist` gem is out of action, and has been for many months.
|
160
|
+
|
161
|
+
It's licensed under the MIT license, and bug-reports, and pull requests are welcome.
|
data/Rakefile
ADDED
data/bin/jist
CHANGED
@@ -13,9 +13,6 @@ opts = OptionParser.new do |opts|
|
|
13
13
|
opts.banner = <<-EOS
|
14
14
|
Jist (v#{Jist::VERSION}) lets you upload to https://gist.github.com/
|
15
15
|
|
16
|
-
Usage: #{executable_name} [-o|-c] [-p] [-d DESC] [-t TOKEN|-a] [-u URL] [-P] [-f NAME]* FILE*
|
17
|
-
#{executable_name} --login
|
18
|
-
|
19
16
|
The content to be uploaded can be passed as a list of files, if none are
|
20
17
|
specified STDIN will be read. The default filename for STDIN is "a.rb", and all
|
21
18
|
filenames can be overridden by repeating the "-f" flag. The most useful reason
|
@@ -40,6 +37,9 @@ Instead of creating a new jist, you can update an existing one by passing its ID
|
|
40
37
|
or URL with "-u". For this to work, you must be logged in, and have created the
|
41
38
|
original gist with the same GitHub account.
|
42
39
|
|
40
|
+
Usage: #{executable_name} [-o|-c] [-p] [-d DESC] [-t TOKEN|-a] [-u URL] [-P] [-f NAME]* FILE*
|
41
|
+
#{executable_name} --login
|
42
|
+
|
43
43
|
EOS
|
44
44
|
|
45
45
|
opts.on("--login", "Authenticate jist on this computer.") do
|
data/jist.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require './lib/jist'
|
2
|
+
Gem::Specification.new do |s|
|
3
|
+
s.name = 'jist'
|
4
|
+
s.version = Jist::VERSION
|
5
|
+
s.summary = 'Just allows you to upload gists'
|
6
|
+
s.description = 'Provides a single function (Jist.gist) that uploads a gist.'
|
7
|
+
s.homepage = 'https://github.com/ConradIrwin/jist'
|
8
|
+
s.email = 'conrad.irwin@gmail.com'
|
9
|
+
s.authors = ['Conrad Irwin']
|
10
|
+
s.license = 'MIT'
|
11
|
+
s.files = `git ls-files`.split("\n")
|
12
|
+
s.require_paths = ["lib"]
|
13
|
+
|
14
|
+
s.executables << 'jist'
|
15
|
+
|
16
|
+
s.add_dependency 'json'
|
17
|
+
%w(rake rspec).each do |gem|
|
18
|
+
s.add_development_dependency gem
|
19
|
+
end
|
20
|
+
end
|
data/lib/jist.rb
CHANGED
@@ -0,0 +1,34 @@
|
|
1
|
+
describe '...' do
|
2
|
+
before do
|
3
|
+
@saved_path = ENV['PATH']
|
4
|
+
@bobo_url = 'http://example.com'
|
5
|
+
end
|
6
|
+
|
7
|
+
after do
|
8
|
+
ENV['PATH'] = @saved_path
|
9
|
+
end
|
10
|
+
|
11
|
+
def ask_for_copy
|
12
|
+
Jist.on_success({'html_url' => @bobo_url}.to_json, :copy => true )
|
13
|
+
end
|
14
|
+
def jist_but_dont_ask_for_copy
|
15
|
+
Jist.on_success({'html_url' => 'http://example.com/'}.to_json)
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'should try to copy the url when the clipboard option is passed' do
|
19
|
+
Jist.should_receive(:copy).with(@bobo_url)
|
20
|
+
ask_for_copy
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should not copy when not asked to" do
|
24
|
+
Jist.should_not_receive(:copy).with(@bobo_url)
|
25
|
+
jist_but_dont_ask_for_copy
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should raise an error if no copying mechanisms are available" do
|
29
|
+
ENV['PATH'] = ''
|
30
|
+
lambda{
|
31
|
+
ask_for_copy
|
32
|
+
}.should raise_error(/Could not find copy command/)
|
33
|
+
end
|
34
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# Require this file using `require "spec_helper.rb"` to ensure that it is only
|
4
|
+
# loaded once.
|
5
|
+
#
|
6
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
7
|
+
RSpec.configure do |config|
|
8
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
9
|
+
config.run_all_when_everything_filtered = true
|
10
|
+
config.filter_run :focus
|
11
|
+
end
|
12
|
+
|
13
|
+
require_relative '../lib/jist'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
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: 2012-08-
|
12
|
+
date: 2012-08-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -66,10 +66,20 @@ executables:
|
|
66
66
|
extensions: []
|
67
67
|
extra_rdoc_files: []
|
68
68
|
files:
|
69
|
-
-
|
69
|
+
- .gitignore
|
70
|
+
- .rspec
|
71
|
+
- Gemfile
|
72
|
+
- LICENSE.MIT
|
73
|
+
- README.md
|
74
|
+
- Rakefile
|
70
75
|
- bin/jist
|
76
|
+
- jist.gemspec
|
77
|
+
- lib/jist.rb
|
78
|
+
- spec/clipboard_spec.rb
|
79
|
+
- spec/spec_helper.rb
|
71
80
|
homepage: https://github.com/ConradIrwin/jist
|
72
|
-
licenses:
|
81
|
+
licenses:
|
82
|
+
- MIT
|
73
83
|
post_install_message:
|
74
84
|
rdoc_options: []
|
75
85
|
require_paths:
|