rally_api 0.5.1 → 0.5.2
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.rdoc +5 -6
- data/lib/rally_api/rally_json_connection.rb +1 -2
- data/lib/rally_api/version.rb +1 -1
- metadata +4 -4
data/README.rdoc
CHANGED
|
@@ -106,10 +106,9 @@ RallyAPI is a wrapper of Rally's Web Service API Json endpoints using rest-clien
|
|
|
106
106
|
story1.rank_above(story2) #in a drag and drop workspace move story1 relative to story2
|
|
107
107
|
story1.rank_below(story2)
|
|
108
108
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
#Rally Software Development Corp.
|
|
109
|
+
== License/Meta
|
|
110
|
+
Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
|
|
111
|
+
Copyright (c) 2002-2011 Rally Software Development Corp. All Rights Reserved.
|
|
112
|
+
Your use of this Software is governed by the terms and conditions of the applicable Subscription Agreement
|
|
113
|
+
between your company and Rally Software Development Corp.
|
|
115
114
|
|
|
@@ -139,7 +139,6 @@ module RallyAPI
|
|
|
139
139
|
end
|
|
140
140
|
end
|
|
141
141
|
|
|
142
|
-
#todo support proxy stuff
|
|
143
142
|
def send_json_request(url, args, url_params = nil)
|
|
144
143
|
request_args = {}
|
|
145
144
|
request_args[:url] = url
|
|
@@ -185,7 +184,7 @@ module RallyAPI
|
|
|
185
184
|
end
|
|
186
185
|
|
|
187
186
|
def log_info(message)
|
|
188
|
-
puts message
|
|
187
|
+
puts message if @logger.nil?
|
|
189
188
|
@logger.debug(message) unless @logger.nil?
|
|
190
189
|
end
|
|
191
190
|
|
data/lib/rally_api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rally_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-08-
|
|
12
|
+
date: 2012-08-31 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rest-client
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70364805912900 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,7 @@ dependencies:
|
|
|
21
21
|
version: 1.6.7
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70364805912900
|
|
25
25
|
description: API wrapper for Rally's JSON REST web services api
|
|
26
26
|
email:
|
|
27
27
|
- dsmith@rallydev.com
|