Skip to content
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.

Commit

Permalink
Minor simplification to Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dkubb committed Aug 17, 2010
1 parent 70faa54 commit 54f8ef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -134,7 +134,7 @@ group :datamapper do # We need this because we want to pin these dependencies to
end

plugins = ENV['PLUGINS'] || ENV['PLUGIN']
plugins = (plugins.to_s.gsub(',',' ').split(' ') + ['dm-migrations']).uniq
plugins = plugins.to_s.tr(',', ' ').split.push('dm-migrations').uniq

plugins.each do |plugin|
gem plugin, DM_VERSION, :git => "#{DATAMAPPER}/#{plugin}.git"
Expand Down

0 comments on commit 54f8ef7

Please sign in to comment.