diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-16 00:16:43 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-16 00:16:43 -0700 |
commit | fa2a255352c7822b7bfc14055b5cfb582f02f7a3 (patch) | |
tree | ff40cc546c0ae50a20dd3b6a99a4cee9e6618b9b /activesupport/lib | |
parent | ed67d90a9874df2e42d6045d47e805b3e594d718 (diff) | |
download | rails-fa2a255352c7822b7bfc14055b5cfb582f02f7a3.tar.gz rails-fa2a255352c7822b7bfc14055b5cfb582f02f7a3.tar.bz2 rails-fa2a255352c7822b7bfc14055b5cfb582f02f7a3.zip |
missed . joining rails version and git revision
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/testing/performance.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/performance.rb b/activesupport/lib/active_support/testing/performance.rb index 7da2f6791a..b8e4f46d70 100644 --- a/activesupport/lib/active_support/testing/performance.rb +++ b/activesupport/lib/active_support/testing/performance.rb @@ -116,7 +116,7 @@ module ActiveSupport rails = Rails::VERSION::STRING if File.directory?('vendor/rails/.git') Dir.chdir('vendor/rails') do - rails += "#{$1}.#{$2}" if `git branch -v` =~ /^\* (\S+)\s+(\S+)/ + rails += ".#{$1}.#{$2}" if `git branch -v` =~ /^\* (\S+)\s+(\S+)/ end end |