arusarka-mingle4r 0.2.2 → 0.2.5
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 +9 -0
- metadata +1 -1
data/README
CHANGED
|
@@ -110,6 +110,15 @@ m_c.proj_id = 'great_mingle_project'
|
|
|
110
110
|
card = m_c.cards[0]
|
|
111
111
|
card.property_value('Status')
|
|
112
112
|
|
|
113
|
+
F) Adding comment to a particular card
|
|
114
|
+
--------------------------------------
|
|
115
|
+
|
|
116
|
+
m_c = Mingle4r::MingleClient.new('http://localhost:8080', 'testuser', 'password')
|
|
117
|
+
m_c.proj_id = 'great_mingle_project'
|
|
118
|
+
defect_card = m_c.cards[0]
|
|
119
|
+
defect_card.add_comment('Not able to reproduce')
|
|
120
|
+
|
|
121
|
+
|
|
113
122
|
== REQUIREMENTS:
|
|
114
123
|
|
|
115
124
|
1) active_resource gem, it would be automatically taken care of
|