Commit 29ae5faa40660445a84dd531799f0b53cbcadd93
- Date: Mon Mar 24 19:26:56 +0000 2008
- Committer: Aslak Hellesøy (aslak.hellesoy@gmail.com)
- Author: Aslak Hellesøy (aslak.hellesoy@gmail.com)
- Commit SHA1: 29ae5faa40660445a84dd531799f0b53cbcadd93
- Tree SHA1: 3c52d186de2ac031c149020fbd11d9ca76989dd7
- lib/kipling.rb 5 +++++
- bin/kipling 5 ---++
- lib/kipling/timeline.rb 1 +
Commit diff
- Diff rendering mode:
- inline
- side by side
bin/kipling
|   | ||
| 1 | ||
| 2 | ||
| 3 | ||
| 1 | #!/usr/bin/env ruby | |
| 2 | require File.dirname(__FILE__) + '/../lib/kipling' | |
| 4 | 3 | Kipling::CommandLine.new.parse |
| toggle raw diff | ||
lib/kipling.rb
|   | ||
| 1 | # Add the directory containing this file to the start of the load path if it | |
| 2 | # isn't there already. | |
| 3 | $:.unshift(File.dirname(__FILE__)) unless | |
| 4 | $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__))) | |
| 5 | ||
| 1 | 6 | require 'kipling/version' |
| 2 | 7 | require 'kipling/card' |
| 3 | 8 | require 'kipling/card_view' |
| toggle raw diff | ||
lib/kipling/timeline.rb
|   | ||
| 1 | require 'rubygems' | |
| 1 | 2 | require 'active_support' |
| 2 | 3 | |
| 3 | 4 | module Kipling |
| toggle raw diff | ||
