public
Description: a cheat sheet tool based on git
Homepage:
Clone URL: git://github.com/robin/chit.git
Click here to lend your support to: chit and make a donation at www.pledgie.com !
chit / Rakefile
100644 20 lines (17 sloc) 0.589 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- ruby -*-
 
require 'rubygems'
require './lib/chit.rb'
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "chit"
    gemspec.summary = "A command line cheat sheet utility based on git"
    gemspec.description = "A command line cheat sheet utility based on git"
    gemspec.email = "iamawalrus@gmail.com"
    gemspec.homepage = "http://github.com/robin/chit"
    gemspec.authors = ["Robin Lu"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
# vim: syntax=Ruby