summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-11-05 23:18:21 -0800
committerAndre Arko <andre@arko.net>2014-11-05 23:18:21 -0800
commit6fd01318b6e92fffd7bd0468de16ec3bd659736f (patch)
tree4c4a64864b332ee3b75660513b0ee5cf73390d59 /Rakefile
parent2f4bf0680cc6ca0e37a399a9a9870eab43fdd5a5 (diff)
downloadbundler-6fd01318b6e92fffd7bd0468de16ec3bd659736f.tar.gz
Sort deps by name so mustache is first
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 078d03618b..e53c9d6080 100644
--- a/Rakefile
+++ b/Rakefile
@@ -32,7 +32,7 @@ namespace :spec do
task :deps do
deps = Hash[BUNDLER_SPEC.development_dependencies.map do |d|
[d.name, d.requirement.to_s]
- end]
+ end.sort_by{|name, _| name }]
# JRuby can't build ronn or rdiscount, so we skip that
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'