diff options
author | elijah <elijah@riseup.net> | 2012-11-15 00:19:33 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2012-11-15 00:19:33 -0800 |
commit | 852d05a9e7453968f1f4cf8feaec8b2da0506861 (patch) | |
tree | d1b4cbd3aec8646eb5e2f253cc577d067ed86bc5 /Rakefile | |
parent | 41ff80b4aeb20b762e5f64ebb2508496be8f04ba (diff) | |
download | leap_cli-852d05a9e7453968f1f4cf8feaec8b2da0506861.tar.gz leap_cli-852d05a9e7453968f1f4cf8feaec8b2da0506861.tar.bz2 |
fixed rake task update-requirements
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ desc "Updates the list of required configuration options for this version of LEA task 'update-requirements' do Dir.chdir($base_dir) do required_configs = `find -name '*.rb' | xargs grep -R 'assert_config!'`.split("\n").collect{|line| - if line =~ /def/ + if line =~ /def/ || line =~ /pre\.rb/ nil else line.sub(/.*assert_config! ["'](.*?)["'].*/,'"\1"') |