summaryrefslogtreecommitdiff
path: root/lib/bundler/dependency.rb
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-01-28 16:24:44 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-01-28 16:24:44 -0800
commit8637b672564c5f48681d37a41fb5b6988ed524f8 (patch)
treeacf18c565a0caa3336e1c2eed68733ad76a639d3 /lib/bundler/dependency.rb
parentacab5a322549a370c39e4f36149aba81f519c389 (diff)
downloadbundler-8637b672564c5f48681d37a41fb5b6988ed524f8.tar.gz
Implementing groups and install --without
Diffstat (limited to 'lib/bundler/dependency.rb')
-rw-r--r--lib/bundler/dependency.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/dependency.rb b/lib/bundler/dependency.rb
index 21ebd82843..253efafd57 100644
--- a/lib/bundler/dependency.rb
+++ b/lib/bundler/dependency.rb
@@ -2,12 +2,12 @@ require 'rubygems/dependency'
module Bundler
class Dependency < Gem::Dependency
- attr_accessor :source, :group
+ attr_accessor :source
def initialize(name, version, options = {}, &blk)
super(name, version)
- @group = options[:group]
+ @group = options["group"]
end
end
end \ No newline at end of file