morale 0.1.3 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +20 -6
- data/lib/morale.rb +1 -1
- data/morale.gemspec +2 -2
- metadata +4 -4
data/README.md
CHANGED
@@ -5,7 +5,7 @@ Description
|
|
5
5
|
-----------
|
6
6
|
|
7
7
|
This gem allows you to create and manage Morale tickets from the command line. It contains a client application that communicates via
|
8
|
-
the Morale API. You must have
|
8
|
+
the Morale API. You must have a valid API key on your profile in order to allow the API to have access to your accounts.
|
9
9
|
|
10
10
|
For more information about Morale see <http://teammorale.com>.
|
11
11
|
|
@@ -24,15 +24,29 @@ The same commands that are available on the web application are available within
|
|
24
24
|
morale login # Asks for your email address and password for your Morale account and pulls down your API key
|
25
25
|
morale accounts # Displays a list of accounts for your email address and password
|
26
26
|
morale projects # Displays a list of projects for your current account
|
27
|
+
morale tickets # Displays a list of tickets for your current project
|
27
28
|
morale [command] # Creates, updates, or deletes a ticket based on your command.
|
28
29
|
|
29
30
|
# Some sample ticket commands
|
30
31
|
|
31
|
-
morale This is a test task assign: Jamie due: today
|
32
|
-
morale #35: assign: Robert
|
33
|
-
morale a #2
|
34
|
-
morale d #41 # Deletes ticket #41
|
35
|
-
|
32
|
+
morale "This is a test task assign: Jamie due: today" # Task with the title "This is a test task" assigned to Jamie W. with a due date of today
|
33
|
+
morale "#35: assign: Robert" # Updates ticket #35 by assigning it to Robert
|
34
|
+
morale "a #2" # Archives ticket #2
|
35
|
+
morale "d #41" # Deletes ticket #41
|
36
|
+
|
37
|
+
** Ensure that you either escape the "#" character with \# or put the commands in quotes as a # is a comment character in the command line interface
|
38
|
+
|
39
|
+
Contributing
|
40
|
+
------------
|
41
|
+
|
42
|
+
1. Fork it.
|
43
|
+
2. Create a new branch.
|
44
|
+
3. Create tests for your changes.
|
45
|
+
4. Make your changes.
|
46
|
+
5. Run the tests.
|
47
|
+
6. Commit your changes.
|
48
|
+
7. Push your branch.
|
49
|
+
8. Create a pull request from your change.
|
36
50
|
|
37
51
|
Released under the [MIT license](http://www.opensource.org/licenses/mit-license.php).
|
38
52
|
|
data/lib/morale.rb
CHANGED
data/morale.gemspec
CHANGED
@@ -5,8 +5,8 @@ Gem::Specification.new do |s|
|
|
5
5
|
s.rubygems_version = '1.3.5'
|
6
6
|
|
7
7
|
s.name = 'morale'
|
8
|
-
s.version = '0.
|
9
|
-
s.date = '2011-10-
|
8
|
+
s.version = '1.0.0'
|
9
|
+
s.date = '2011-10-26'
|
10
10
|
s.rubyforge_project = 'morale'
|
11
11
|
|
12
12
|
s.summary = "Command line interface to create & manage tickets on Morale."
|
metadata
CHANGED
@@ -3,10 +3,10 @@ name: morale
|
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
|
-
- 0
|
7
6
|
- 1
|
8
|
-
-
|
9
|
-
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 1.0.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Brilliant Fantastic
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2011-10-
|
17
|
+
date: 2011-10-26 00:00:00 -04:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|