diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-05-25 19:14:50 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-06-30 10:47:41 +0200 |
commit | 094787f51062898127f59b9edd9c8ce0ecb379af (patch) | |
tree | 8ee63dd452a5e471308889f6cdb3701e5bfc9fba | |
parent | 48151e302f8960991148cd4db3c3812a8da4c595 (diff) | |
download | skeletons-094787f51062898127f59b9edd9c8ce0ecb379af.zip skeletons-094787f51062898127f59b9edd9c8ce0ecb379af.tar.gz |
add +PROJ.gem.development_dependencies
-rw-r--r-- | tasks/constants.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tasks/constants.rb b/tasks/constants.rb index 0e84d3a..78a7625 100644 --- a/tasks/constants.rb +++ b/tasks/constants.rb @@ -104,6 +104,10 @@ end HAVE_SVN = (Dir.entries(Dir.pwd).include?('.svn') and system("svn --version 2>&1 > #{DEV_NULL}")) HAVE_GIT = (Dir.entries(Dir.pwd).include?('.git') and system("git --version 2>&1 > #{DEV_NULL}")) +# Add rake as a development dependency +# +PROJ.gem.development_dependencies << ['rake', '>=0.8.7'] + # Add bones as a development dependency # if HAVE_BONES |