Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Fetcher prints multiple times during install #1445

Closed
indirect opened this issue Sep 22, 2011 · 4 comments
Closed

Fetcher prints multiple times during install #1445

indirect opened this issue Sep 22, 2011 · 4 comments
Assignees
Milestone

Comments

@indirect
Copy link
Member

$ dbundle install
Fetching dependency information from the API at http://www.rubygems.org/......
Fetching dependency information from the API at http://www.rubygems.org/Fetching dependency information from the API at http://www.rubygems.org/
Installing rake (0.9.2)

@hone
Copy link
Contributor

hone commented Sep 22, 2011

Provide a Gemfile please :)

@ghost ghost assigned hone Sep 22, 2011
@indirect
Copy link
Member Author

oops!

source "http://www.rubygems.org"
gemspec
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "campfire/version"

Gem::Specification.new do |s|
  s.name        = "wesabot"
  s.version     = Campfire::VERSION
  s.authors     = ["Brad Greenlee", "André Arko", "Brian Donovan"]
  s.email       = ["[email protected]", "[email protected]", "[email protected]"]
  s.homepage    = "https://github.com/hackarts/wesabot"
  s.summary     = %q{Wesabe's Campfire bot framework}
  s.description = %q{Wesabot is a Campfire bot framework we've been using and
    developing at Wesabe since not long after our inception. It started as a
    way to avoid parking tickets near our office ("Wes, remind me in 2 hours
    to move my car"), and has evolved into an essential work aid. When you
    enter the room, Wes greets you with a link to the point in the transcript
    where you last left. You can also ask him to bookmark points in the
    transcript, send an sms message (well, an email) to someone, or even post
    a tweet, among other things. His functionality is easily extendable via
    plugins.}

  s.rubyforge_project = "wesabot"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  ### core dependencies
  s.add_dependency "tinder", "~> 1.7.0"
  s.add_dependency "data_mapper", "~> 1.1"
  s.add_dependency "dm-sqlite-adapter", "~> 1.1"
  s.add_dependency "daemons"
  s.add_dependency "i18n"
  s.add_dependency "firering", "~> 1.2.0"

  ### plugin dependencies

  # airbrake
  s.add_dependency "nokogiri"
  s.add_dependency "rest-client"

  # image_search
  s.add_dependency "httparty" # also used by twitter_search
  s.add_dependency "google-search"

  # remind_me
  s.add_dependency "chronic"

  ### development dependencies
  s.add_development_dependency "rspec", "~> 2.6.0"
  s.add_development_dependency "rake"
  s.add_development_dependency "ruby-debug", "~> 0.10.4"
  # linecache 0.46 depends on rbx-require-relative, which fails to install on
  # Bundler 1.1. This works around it until the bug is fixed.
  s.add_development_dependency "linecache", "0.45"

end

@apolzon
Copy link

apolzon commented Sep 25, 2011

Same here. Using bundler 1.1.pre9.

Correction I get the triple "fetching" printout when running bundle update gemname, not bundle
Triple-print also occurs when performing a bundle with no Gemfile.lock present

Gemfile head:

source 'http://rubygems.org'

gem 'rails'
gem 'mysql2', '~> 0.2.0'
gem 'symbolize'
...

@hone hone closed this as completed Sep 30, 2011
@hone hone reopened this Sep 30, 2011
hone added a commit to hone/bundler that referenced this issue Sep 30, 2011
@hone hone closed this as completed in 5238245 Sep 30, 2011
@hone hone reopened this Oct 1, 2011
@hone hone closed this as completed Oct 3, 2011
@hone hone reopened this Oct 3, 2011
@hone
Copy link
Contributor

hone commented Oct 4, 2011

Merged #1462.

@hone hone closed this as completed Oct 4, 2011
timfel pushed a commit to timfel/bundler that referenced this issue Oct 28, 2011
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants