]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/IndentFirstHashElement in lib/redmine/scm/adapters/subve...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 07:57:40 +0000 (07:57 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 07:57:40 +0000 (07:57 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19181 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/subversion_adapter.rb

index 76e7917fd8a3ff5f0ea262e0b940e2b4d86cee0d..06420620d3c15697e18cfea4d6c3a70871df127e 100644 (file)
@@ -69,11 +69,14 @@ module Redmine
               doc = parse_xml(output)
               # root_url = doc.elements["info/entry/repository/root"].text
               info = Info.new({:root_url => doc['info']['entry']['repository']['root']['__content__'],
-                               :lastrev => Revision.new({
-                                 :identifier => doc['info']['entry']['commit']['revision'],
-                                 :time => Time.parse(doc['info']['entry']['commit']['date']['__content__']).localtime,
-                                 :author => (doc['info']['entry']['commit']['author'] ? doc['info']['entry']['commit']['author']['__content__'] : "")
-                               })
+                               :lastrev =>
+                                 Revision.new(
+                                   {
+                                     :identifier => doc['info']['entry']['commit']['revision'],
+                                     :time => Time.parse(doc['info']['entry']['commit']['date']['__content__']).localtime,
+                                     :author => (doc['info']['entry']['commit']['author'] ? doc['info']['entry']['commit']['author']['__content__'] : "")
+                                   }
+                                 )
                              })
             rescue
             end
@@ -109,11 +112,14 @@ module Redmine
                             :path => ((path.empty? ? "" : "#{path}/") + name),
                             :kind => entry['kind'],
                             :size => ((s = entry['size']) ? s['__content__'].to_i : nil),
-                            :lastrev => Revision.new({
-                              :identifier => commit['revision'],
-                              :time => Time.parse(commit_date['__content__'].to_s).localtime,
-                              :author => ((a = commit['author']) ? a['__content__'] : nil)
-                              })
+                            :lastrev =>
+                              Revision.new(
+                                {
+                                  :identifier => commit['revision'],
+                                  :time => Time.parse(commit_date['__content__'].to_s).localtime,
+                                  :author => ((a = commit['author']) ? a['__content__'] : nil)
+                                }
+                              )
                             })
               end
             rescue => e