Created
May 27, 2012 12:54
-
-
Save louposk/2814116 to your computer and use it in GitHub Desktop.
Error while running command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bundle install --without production |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unfortunately, a fatal error has occurred. Please report this error to the Bundler issue tracker at https://github.com/carlhuda/bundler/issues so that we can fix it. Please include the full output of the command, your Gemfile and Gemfile.lock. Thanks! | |
c:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:268:in []': code converter not found (UTF-16LE to IBM737) (Encoding::ConverterNotFoundError) from c:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:268:i | |
nblock in _all' | |
from c:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:267:in each' | |
from c:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:267:in_all' | |
from c:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:410:in each' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/rubygems_integration.rb:357:into_a' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/rubygems_integration.rb:357:in all_specs' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/source.rb:178:ininstalled_specs' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/source.rb:170:in fetch_specs' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/source.rb:70:inspecs' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/definition.rb:205:in block (2 levels) in index' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/definition.rb:202:ineach' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/definition.rb:202:in block in index' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/index.rb:9:inbuild' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/definition.rb:198:in index' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/definition.rb:192:inresolve' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/definition.rb:153:in missing_specs' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/installer.rb:38:inrun' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/installer.rb:12:in install' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/cli.rb:220:ininstall' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/vendor/thor/task.rb:22:in run' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/vendor/thor/invocation.rb:118:ininvoke_task' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/vendor/thor.rb:263:in dispatch' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/vendor/thor/base.rb:386:instart' | |
from c:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/bin/bundle:13:in<top (required)>' | |
from c:/Ruby192/bin/bundle:23:inload' | |
from c:/Ruby192/bin/bundle:23:in `' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'rails', '3.2.3' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' | |
group :development do | |
gem 'sqlite3', '1.3.6' | |
end | |
# Gems used only for assets and not required | |
# in production environments by default. | |
group :assets do | |
gem 'sass-rails', '3.2.5' | |
gem 'coffee-rails', '3.2.2' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer', :platform => :ruby | |
gem 'uglifier', '1.2.4' | |
end | |
gem 'jquery-rails', '2.0.2' | |
group :production do | |
gem 'pg', '0.12.2' | |
end | |
# To use ActiveModel has_secure_password | |
# gem 'bcrypt-ruby', '~> 3.0.0' | |
# To use Jbuilder templates for JSON | |
# gem 'jbuilder' | |
# Use unicorn as the app server | |
# gem 'unicorn' | |
# Deploy with Capistrano | |
# gem 'capistrano' | |
# To use debugger | |
# gem 'ruby-debug19', :require => 'ruby-debug' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bundler version->1.1.3 | |
Ruby version->1.9.2p290 (2011-07-09) [i386-mingw32] | |
Gem version->1.8.24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment