summaryrefslogtreecommitdiffhomepage
path: root/tasks
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-06-13 12:50:00 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-06-13 12:50:00 +0900
commit8ef971a3735a85d0f2ed3c9f4896555944075a96 (patch)
treef64f6cfc767a7648a75e2eda51d4f0fe557f6a2e /tasks
parent81db9b709096b011033fa8ddf02927f2ff08d5e0 (diff)
downloadmruby-8ef971a3735a85d0f2ed3c9f4896555944075a96.tar.gz
mruby-8ef971a3735a85d0f2ed3c9f4896555944075a96.zip
remove add_conflicts now; use add_conflict; ref #2390
Diffstat (limited to 'tasks')
-rw-r--r--tasks/mrbgem_spec.rake4
1 files changed, 0 insertions, 4 deletions
diff --git a/tasks/mrbgem_spec.rake b/tasks/mrbgem_spec.rake
index d38471739..2a15a1f46 100644
--- a/tasks/mrbgem_spec.rake
+++ b/tasks/mrbgem_spec.rake
@@ -102,10 +102,6 @@ module MRuby
@dependencies << {:gem => name, :requirements => requirements, :default => default_gem}
end
- def add_conflicts(*names)
- @conflicts += names.map { |n| {:gem => n} }
- end
-
def add_conflict(name, *req)
@conflicts << {:gem => name, :requirements => req.empty? ? nil : req}
end