Skip to content

Commit

Permalink
move gist script into bin
Browse files Browse the repository at this point in the history
  • Loading branch information
defunkt committed Feb 28, 2010
1 parent 26fd44b commit 909fa85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RubyGem:

Old school:

curl -s http://github.com/defunkt/gist/raw/master/gist.rb > gist &&
curl -s http://github.com/defunkt/gist/raw/master/bin/gist > gist &&
chmod 755 gist &&
mv gist /usr/local/bin/gist

Expand Down
2 changes: 1 addition & 1 deletion gist.rb → bin/gist
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# RubyGem:
# gem install gist
# Old school:
# curl -s http://github.com/defunkt/gist/raw/master/gist.rb > gist &&
# curl -s http://github.com/defunkt/gist/raw/master/bin/gist > gist &&
# chmod 755 gist &&
# mv gist /usr/local/bin/gist

Expand Down
3 changes: 2 additions & 1 deletion gist.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Gem::Specification.new do |s|
s.email = "chris@ozmm.org"
s.authors = [ "Chris Wanstrath" ]
s.has_rdoc = false
s.files = %w( README.md gist.rb )
s.files = %w( README.markdown bin/gist )
s.executables = %w( gist )
s.description = <<desc
Creates Gists (pastes) on gist.github.com from standard input or
arbitrary files. Can link to your GitHub account, create private gists,
Expand Down

0 comments on commit 909fa85

Please sign in to comment.