morale 0.1.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +20 -6
  2. data/lib/morale.rb +1 -1
  3. data/morale.gemspec +2 -2
  4. 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 the API enabled on the account you wish to work with (which is turned off by default) and a valid API key.
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 # Task with the title "This is a test task" assigned to Jamie W. with a due date of today
32
- morale #35: assign: Robert # Updates ticket #35 by assigning it to Robert
33
- morale a #2 # Archives ticket #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
@@ -1,5 +1,5 @@
1
1
  module Morale
2
- VERSION = "0.1.3"
2
+ VERSION = "1.0.0"
3
3
  end
4
4
 
5
5
  require 'morale/command'
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.1.3'
9
- s.date = '2011-10-02'
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
- - 3
9
- version: 0.1.3
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-02 00:00:00 -04:00
17
+ date: 2011-10-26 00:00:00 -04:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency