diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2013-12-17 16:10:52 -0800 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2013-12-17 16:10:52 -0800 |
commit | dc90709eaf1242f565de3a9282d7939f6bc853cf (patch) | |
tree | 40493c066b61cef6d4fd90fda07e99eb882f45ed | |
parent | c0a2d474c50a3a096229f956d9696d9e91f1557a (diff) | |
download | rails-dc90709eaf1242f565de3a9282d7939f6bc853cf.tar.gz rails-dc90709eaf1242f565de3a9282d7939f6bc853cf.tar.bz2 rails-dc90709eaf1242f565de3a9282d7939f6bc853cf.zip |
Fix dependency order
-rw-r--r-- | tasks/release.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/release.rb b/tasks/release.rb index 66da67bfd0..8aceda1ec3 100644 --- a/tasks/release.rb +++ b/tasks/release.rb @@ -1,4 +1,4 @@ -FRAMEWORKS = %w( activesupport activemodel activerecord actionpack actionview actionmailer railties ) +FRAMEWORKS = %w( activesupport activemodel activerecord actionview actionpack actionmailer railties ) root = File.expand_path('../../', __FILE__) version = File.read("#{root}/RAILS_VERSION").strip |