rscm 0.3.7 → 0.3.8

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.
Files changed (5) hide show
  1. data/CHANGES +7 -0
  2. data/README +5 -5
  3. data/Rakefile +2 -2
  4. data/lib/rscm/scm/clearcase.rb +1 -1
  5. metadata +1 -1
data/CHANGES CHANGED
@@ -1,5 +1,12 @@
1
1
  = RSCM Changelog
2
2
 
3
+ == Version 0.3.8
4
+
5
+ Bugfix release
6
+
7
+ * Reshuffled supported SCMs
8
+ * Made ClearCase ctor params optional
9
+
3
10
  == Version 0.3.7
4
11
 
5
12
  This release improves polling of revisions (changesets) and improves ClearCase support
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = RSCM - Ruby Source Control Management (0.3.7)
1
+ = RSCM - Ruby Source Control Management (0.3.8)
2
2
 
3
3
  RSCM is to SCM what DBI/JDBC/ODBC are to databases - an SCM-independent API for accessing different SCMs. The features are roughly:
4
4
 
@@ -32,15 +32,15 @@ If you want the latest and greatest, you can get the sources, which live alongsi
32
32
  == Supported SCMs
33
33
 
34
34
  * CVS - http://www.cvshome.org (stable)
35
- * Perforce - http://www.perforce.com (not thoroughly tested)
36
- * StarTeam - http://www.borland.com/starteam (not thoroughly tested)
37
35
  * Subversion - http://subversion.tigris.org (stable)
38
36
 
39
37
  In progress:
40
38
 
41
- * ClearCase -http://www-306.ibm.com/software/awdtools/clearcase (half way there)
39
+ * ClearCase -http://www-306.ibm.com/software/awdtools/clearcase (half complete)
42
40
  * Darcs - http://www.abridgegame.org/darcs (very incomplete)
43
- * Monotone - http://www.venge.net/monotone (half way there)
41
+ * Monotone - http://www.venge.net/monotone (half complete)
42
+ * Perforce - http://www.perforce.com (nearly complete - a little out of date with recent API)
43
+ * StarTeam - http://www.borland.com/starteam (nearly complete - a little out of date with recent API)
44
44
 
45
45
  Planned:
46
46
 
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ require 'meta_project'
10
10
 
11
11
  PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
12
12
  PKG_NAME = 'rscm'
13
- PKG_VERSION = '0.3.7' + PKG_BUILD
13
+ PKG_VERSION = '0.3.8' + PKG_BUILD
14
14
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
15
15
 
16
16
  desc "Default Task"
@@ -135,7 +135,7 @@ task :release_files => [:gem] do
135
135
  end
136
136
 
137
137
  desc "Publish docs/website"
138
- task :publish_doc do
138
+ task :publish_doc => [:rdoc] do
139
139
  publisher = Rake::RubyForgePublisher.new(PKG_NAME, ENV['RUBYFORGE_USER'])
140
140
  publisher.upload
141
141
  end
@@ -18,7 +18,7 @@ module RSCM
18
18
 
19
19
  attr_accessor :stream, :stgloc, :tag, :config_spec
20
20
 
21
- def initialize(stream, stgloc, tag, config_spec)
21
+ def initialize(stream=nil, stgloc=nil, tag=nil, config_spec=nil)
22
22
  @stream, @stgloc, @tag, @config_spec = stream, stgloc, tag, config_spec
23
23
  end
24
24
 
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: rscm
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.7
6
+ version: 0.3.8
7
7
  date: 2005-10-11 00:00:00 -04:00
8
8
  summary: "RSCM - Ruby Source Control Management"
9
9
  require_paths: