rscm 0.3.7 → 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +7 -0
- data/README +5 -5
- data/Rakefile +2 -2
- data/lib/rscm/scm/clearcase.rb +1 -1
- metadata +1 -1
data/CHANGES
CHANGED
data/README
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
= RSCM - Ruby Source Control Management (0.3.
|
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
|
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
|
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.
|
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
|
138
|
+
task :publish_doc => [:rdoc] do
|
139
139
|
publisher = Rake::RubyForgePublisher.new(PKG_NAME, ENV['RUBYFORGE_USER'])
|
140
140
|
publisher.upload
|
141
141
|
end
|
data/lib/rscm/scm/clearcase.rb
CHANGED
@@ -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
|
|