diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-05-04 14:11:25 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-05-04 14:11:25 +0000 |
commit | 905a80977426cbebbaeef5f2b6080dddeea7454b (patch) | |
tree | 5173128ee2cb53eeb84226ecaf9dc67a5b04b94a /lib/redmine/scm/adapters/cvs_adapter.rb | |
parent | 8df05b9a6dff195cab71bcb769d7c78c2640c22a (diff) | |
download | redmine-905a80977426cbebbaeef5f2b6080dddeea7454b.tar.gz redmine-905a80977426cbebbaeef5f2b6080dddeea7454b.zip |
scm: add "options" parameter in adapter entries().
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5638 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/scm/adapters/cvs_adapter.rb')
-rw-r--r-- | lib/redmine/scm/adapters/cvs_adapter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/scm/adapters/cvs_adapter.rb b/lib/redmine/scm/adapters/cvs_adapter.rb index 0309bee78..55c527a3d 100644 --- a/lib/redmine/scm/adapters/cvs_adapter.rb +++ b/lib/redmine/scm/adapters/cvs_adapter.rb @@ -90,7 +90,7 @@ module Redmine # Returns an Entries collection # or nil if the given path doesn't exist in the repository # this method is used by the repository-browser (aka LIST) - def entries(path=nil, identifier=nil) + def entries(path=nil, identifier=nil, options={}) logger.debug "<cvs> entries '#{path}' with identifier '#{identifier}'" path_locale = scm_iconv(@path_encoding, 'UTF-8', path) path_locale.force_encoding("ASCII-8BIT") if path_locale.respond_to?(:force_encoding) |