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.
@@ -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.9.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
 
@@ -1,7 +1,7 @@
1
1
  module RallyRestVersion #:nodoc:
2
2
  module LIBRARY_VERSION #:nodoc:
3
- MAJOR = 0
4
- MINOR = 9
3
+ MAJOR = 1
4
+ MINOR = 0
5
5
  TINY = 0
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
@@ -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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rally_rest_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Cotton