arusarka-mingle4r 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/History.txt +5 -4
  2. metadata +3 -3
data/History.txt CHANGED
@@ -1,9 +1,10 @@
1
- 0.2
2
- ---
1
+ 0.1.5
2
+ -----
3
3
 
4
+ * Rest Api's added - wiki
4
5
 
5
6
  0.0.1
6
7
  -----
7
8
 
8
- Rest Api's - Card, Project, User, Attachment, Property Definition
9
- Mingle Client - supports getting cards, project etc.
9
+ * Rest Api's - Card, Project, User, Attachment, Property Definition
10
+ * Mingle Client - supports getting cards, project etc.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arusarka-mingle4r
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - asur
@@ -22,7 +22,7 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: "0"
24
24
  version:
25
- description: "This gem provides a wrapper around active resource so that the user can directly use the rest API exposed by Mingle without much hassle.It provides a easy way to communicate with mingle. For the library to work you need to enable basic authentication (not enabled by default) in Mingle. See below to enable basic authentication in Mingle. Enable basic authentication in Mingle ------------------------------------- 1) Go to Mingle DataDir 2) Open YAML file <Mingle DataDir>/config/auth_config.yml 3) Set 'basic_authentication_enabled' to 'true' (without the quotes) if it is not so == FEATURES/PROBLEMS: It gives you access to projects in the mingle instance, cards under the project and also attachments for a particular card. == SYNOPSIS: A) Getting all the projects for a particular instance -------------------------------------------------- Suppose you want to connect to the mingle instance hosted at http://localhost:8080 where the username is 'testuser' and password is 'password'. m_c = Mingle4r::MingleClient.new('http://localhost:8080', 'testuser', 'password') projs = m_c.projects projs is an array of active resource objects B) Getting a particular project ---------------------------- Before you access a particular project you need to set the project id for the mingle client object. You can do that in two ways. Supposing you are trying to access a project with an identifier of 'great_mingle_project' WARNING : project identifier and project name are different. If you named your project as 'Great Mingle Project' it's identifier is by default 'great_mingle_project'. To be sure what the identifier of a project is you should look at the url in mingle in the particular project you are trying to access. It should be something like 'http://localhost:8080/projects/great_mingle_project' 1) Set at initialize time m_c = Mingle4r::MingleClient.new('http://localhost:8080', 'testuser', 'password', 'great_mingle_project') m_c.project 2) Set an attribute later m_c = Mingle4r::MingleClient.new('http://localhost:8080', 'testuser', 'password') m_c.proj_id = 'great_mingle_project' m_c.project C) Getting cards for a particular project -------------------------------------- Get a mingle client object initialized as in SECTION B. Then call the cards method. m_c = Mingle4r::MingleClient.new('http://localhost:8080', 'testuser', 'password') m_c.proj_id = 'great_mingle_project' m_c.cards cards will be an array of activeresoure objects. == REQUIREMENTS: 1) active_resource gem, it would be automatically taken care of during gem install. 2) Mingle > 2.3 == INSTALL: sudo (not on crappy windows) gem install mingle4r"
25
+ description: A connector wrapper for connecting to Mingle(http://studios.thoughtworks.com/mingle-agile-project-management). It uses active resource to handle the restful connections to Mingle. Makes the job of connecting to Mingle a lot easier. Also since it uses lazy evaluation, resources are fetched only when they are requested.
26
26
  email: arusarka@gmail.com
27
27
  executables: []
28
28
 
@@ -58,6 +58,6 @@ rubyforge_project:
58
58
  rubygems_version: 1.2.0
59
59
  signing_key:
60
60
  specification_version: 2
61
- summary: Mingle connector
61
+ summary: Mingle connector using active resource
62
62
  test_files: []
63
63