diff options
| author | Julien Ammous <[email protected]> | 2013-05-09 10:35:52 +0200 |
|---|---|---|
| committer | Julien Ammous <[email protected]> | 2013-05-09 10:35:52 +0200 |
| commit | 6af7132866cfa33b9736b9b42558d1603f3a3478 (patch) | |
| tree | 465b5e62a19d7bd217804ff205559388e870f4b2 | |
| parent | 7562b284397dde6daf5dbd9a9c15d1b7c019f4bd (diff) | |
| download | mruby-6af7132866cfa33b9736b9b42558d1603f3a3478.tar.gz mruby-6af7132866cfa33b9736b9b42558d1603f3a3478.zip | |
consider empty version requirements as >= 0.0.0
| -rw-r--r-- | tasks/mrbgem_spec.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/mrbgem_spec.rake b/tasks/mrbgem_spec.rake index 86cdf1f21..3e78d3e1b 100644 --- a/tasks/mrbgem_spec.rake +++ b/tasks/mrbgem_spec.rake @@ -88,7 +88,7 @@ module MRuby end def add_dependency(name, *requirements) - requirements = ['> 0.0.0'] if requirements.empty? + requirements = ['>= 0.0.0'] if requirements.empty? requirements.flatten! @dependencies << {:gem => name, :requirements => requirements} end |
