summaryrefslogtreecommitdiffstats
path: root/tasks/helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/helpers.rb')
-rw-r--r--tasks/helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/helpers.rb b/tasks/helpers.rb
index 96b3cc4..b43117a 100644
--- a/tasks/helpers.rb
+++ b/tasks/helpers.rb
@@ -39,7 +39,7 @@ end
# will be used.
#
def depend_on( name, version = nil )
- spec = Gem.source_index.find_name(name).last
+ spec = Gem::Specification.find_by_name(name)
version = spec.version.to_s if version.nil? and !spec.nil?
PROJ.gem.dependencies << case version