gitcamp 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +5 -0
- data/lib/gitcamp/cli.rb +0 -1
- data/lib/gitcamp/version.rb +1 -1
- data/lib/gitcamp.rb +3 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -19,6 +19,11 @@ to check. If not, you'll need to [install it](http://rubygems.org/pages/download
|
|
19
19
|
|
20
20
|
### Usage
|
21
21
|
|
22
|
+
$ gitcamp
|
23
|
+
Commands:
|
24
|
+
gitcamp help [COMMAND] # Describe available commands or one specific command
|
25
|
+
gitcamp todolist # creates BaseCamp todo list from a milestone of GitHub issues
|
26
|
+
|
22
27
|
Creating a todo list in Basecamp
|
23
28
|
|
24
29
|
$ gitcamp todolist
|
data/lib/gitcamp/cli.rb
CHANGED
data/lib/gitcamp/version.rb
CHANGED
data/lib/gitcamp.rb
CHANGED
@@ -1,10 +1,12 @@
|
|
1
|
-
require '
|
1
|
+
require 'rubygems'
|
2
|
+
|
2
3
|
require 'thor'
|
3
4
|
require 'octokit'
|
4
5
|
require 'highline'
|
5
6
|
require 'basecamp'
|
6
7
|
require 'hashie/mash'
|
7
8
|
|
9
|
+
require 'gitcamp/version'
|
8
10
|
require 'gitcamp/config'
|
9
11
|
require 'gitcamp/github/auth'
|
10
12
|
require 'gitcamp/basecamp/auth'
|