rally_rest_api 0.9.0 → 1.0.0
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/CHANGELOG.txt +1 -1
- data/lib/rally_rest_api/version.rb +2 -2
- data/tasks/svn.rake +2 -0
- metadata +1 -1
data/CHANGELOG.txt
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
Replaced "when condition : action" with "when condition then action"
|
|
8
8
|
for compatibility with Ruby 1.9
|
|
9
9
|
|
|
10
|
-
* lib/rally_rest_api/version.rb : Changed version to 0.
|
|
10
|
+
* lib/rally_rest_api/version.rb : Changed version to 1.0.0
|
|
11
11
|
|
|
12
12
|
2006-11-28 Bob Cotton <bcotton@england.f4tech.com>
|
|
13
13
|
|
data/tasks/svn.rake
CHANGED
|
@@ -6,9 +6,11 @@ unless PROJ.svn.root
|
|
|
6
6
|
info = %x/svn info ./
|
|
7
7
|
m = %r/^Repository Root:\s+(.*)$/.match(info)
|
|
8
8
|
PROJ.svn.root = (m.nil? ? '' : m[1])
|
|
9
|
+
puts PROJ.svn.root
|
|
9
10
|
end
|
|
10
11
|
PROJ.svn.path = 'rally_rest_api'
|
|
11
12
|
PROJ.svn.root = File.join(PROJ.svn.root, PROJ.svn.path) unless PROJ.svn.path.empty?
|
|
13
|
+
puts PROJ.svn.root
|
|
12
14
|
|
|
13
15
|
namespace :svn do
|
|
14
16
|
|