Project

General

Profile

Ruby (Rack) application can not be started.

Added by Krishna Gollamudi over 9 years ago

I applied a patch to my redmine installation and since then the server is giving the below error.

Error message:
Could not find i18n-0.7.0 in any of the sources (Bundler::GemNotFound)

I have reverted the patch but still the errors keeps coming up. Here is the output of Bundle env.

Bundler 1.6.2
Ruby 1.9.3 (2014-05-14 patchlevel 547) [x86_64-linux]
Rubygems 2.4.1
rvm 1.25.28 (master)
GEM_HOME /usr/local/rvm/gems/ruby-1.9.3-p547@global

Gemfile

source 'https://rubygems.org'

gem "rails", "3.2.19" 
gem "rake", "~> 10.1.1" 
gem "jquery-rails", "~> 2.0.2" 
gem "coderay", "~> 1.1.0" 
gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
gem "builder", "3.0.0" 
gem "request_store" 
gem "mime-types" 
gem "awesome_nested_set", "2.1.6" 
gem "i18n" 

# Optional gem for LDAP authentication
group :ldap do
  gem "net-ldap", "~> 0.3.1" 
end

# Optional gem for OpenID authentication
group :openid do
  gem "ruby-openid", "~> 2.3.0", :require => "openid" 
  gem "rack-openid" 
end

platforms :mri, :mingw do
  # Optional gem for exporting the gantt to a PNG file, not supported with jruby
  group :rmagick do
    # RMagick 2 supports ruby 1.9
    # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
    # different requirements for the same gem on different platforms
#    gem "rmagick", ">= 2.0.0" 
  end

  # Optional Markdown support, not for JRuby
  group :markdown do
    # TODO: upgrade to redcarpet 3.x when ruby1.8 support is dropped
    gem "redcarpet", "~> 2.3.0" 
  end
end

platforms :jruby do
  # jruby-openssl is bundled with JRuby 1.7.0
  gem "jruby-openssl" if Object.const_defined?(:JRUBY_VERSION) && JRUBY_VERSION < '1.7.0'
  gem "activerecord-jdbc-adapter", "~> 1.3.2" 
end

# Include database gems for the adapters found in the database
# configuration file
require 'erb'
require 'yaml'
database_file = File.join(File.dirname(__FILE__), "config/database.yml")
if File.exist?(database_file)
  database_config = YAML::load(ERB.new(IO.read(database_file)).result)
  adapters = database_config.values.map {|c| c['adapter']}.compact.uniq
  if adapters.any?
    adapters.each do |adapter|
      case adapter
      when 'mysql2'
        gem "mysql2", "~> 0.3.11", :platforms => [:mri, :mingw]
        gem "activerecord-jdbcmysql-adapter", :platforms => :jruby
      when 'mysql'
        gem "mysql", "~> 2.8.1", :platforms => [:mri, :mingw]
        gem "activerecord-jdbcmysql-adapter", :platforms => :jruby
      when /postgresql/
        gem "pg", ">= 0.11.0", :platforms => [:mri, :mingw]
        gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby
      when /sqlite3/
        gem "sqlite3", :platforms => [:mri, :mingw]
        gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
      when /sqlserver/
        gem "tiny_tds", "~> 0.5.1", :platforms => [:mri, :mingw]
        gem "activerecord-sqlserver-adapter", :platforms => [:mri, :mingw]
      else
        warn("Unknown database adapter `#{adapter}` found in config/database.yml, use Gemfile.local to load your own database gems")
      end
    end
  else
    warn("No adapter found in config/database.yml, please configure it first")
  end
else
  warn("Please configure your config/database.yml first")
end

group :development do
  gem "rdoc", ">= 2.4.2" 
  gem "yard" 
end

group :test do
  gem "shoulda", "~> 3.3.2" 
  gem "mocha", "~> 1.0.0", :require => 'mocha/api'
  if RUBY_VERSION >= '1.9.3'
 #   gem "capybara", "~> 2.1.0" 
    gem "selenium-webdriver" 
  end
end

local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
if File.exists?(local_gemfile)
  puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
  instance_eval File.read(local_gemfile)
end

# Load plugins' Gemfiles
Dir.glob File.expand_path("../plugins/*/Gemfile", __FILE__) do |file|
  puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
  #TODO: switch to "eval_gemfile file" when bundler >= 1.2.0 will be required (rails 4)
  instance_eval File.read(file), file
end

Gemfile.lock

GEM
  remote: https://rubygems.org/
  remote: https://rubygems.org/
  remote: https://rubygems.org/
  specs:
    actionmailer (3.2.19)
      actionpack (= 3.2.19)
      mail (~> 2.5.4)
    actionpack (3.2.19)
      activemodel (= 3.2.19)
      activesupport (= 3.2.19)
      builder (~> 3.0.0)
      erubis (~> 2.7.0)
      journey (~> 1.0.4)
      rack (~> 1.4.5)
      rack-cache (~> 1.2)
      rack-test (~> 0.6.1)
      sprockets (~> 2.2.1)
    activemodel (3.2.19)
      activesupport (= 3.2.19)
      builder (~> 3.0.0)
    activerecord (3.2.19)
      activemodel (= 3.2.19)
      activesupport (= 3.2.19)
      arel (~> 3.0.2)
      tzinfo (~> 0.3.29)
    activeresource (3.2.19)
      activemodel (= 3.2.19)
      activesupport (= 3.2.19)
    activesupport (3.2.19)
      i18n (~> 0.6, >= 0.6.4)
      multi_json (~> 1.0)
    arel (3.0.3)
    awesome_nested_set (2.1.6)
      activerecord (>= 3.0.0)
    builder (3.0.0)
    childprocess (0.5.5)
      ffi (~> 1.0, >= 1.0.11)
    coderay (1.1.0)
    erubis (2.7.0)
    fastercsv (1.5.5)
    ffi (1.9.6)
    hike (1.2.3)
    i18n (0.7.0)
    journey (1.0.4)
    jquery-rails (2.0.3)
      railties (>= 3.1.0, < 5.0)
      thor (~> 0.14)
    json (1.8.1)
    libxml-ruby (2.7.0)
    mail (2.5.4)
      mime-types (~> 1.16)
      treetop (~> 1.4.8)
    metaclass (0.0.4)
    mime-types (1.25.1)
    mocha (1.0.0)
      metaclass (~> 0.0.1)
    multi_json (1.10.1)
    mysql2 (0.3.17)
    net-ldap (0.3.1)
    polyglot (0.3.5)
    rack (1.4.5)
    rack-cache (1.2)
      rack (>= 0.4)
    rack-openid (1.4.2)
      rack (>= 1.1.0)
      ruby-openid (>= 2.1.8)
    rack-ssl (1.3.4)
      rack
    rack-test (0.6.2)
      rack (>= 1.0)
    rails (3.2.19)
      actionmailer (= 3.2.19)
      actionpack (= 3.2.19)
      activerecord (= 3.2.19)
      activeresource (= 3.2.19)
      activesupport (= 3.2.19)
      bundler (~> 1.0)
      railties (= 3.2.19)
    railties (3.2.19)
      actionpack (= 3.2.19)
      activesupport (= 3.2.19)
      rack-ssl (~> 1.3.2)
      rake (>= 0.8.7)
      rdoc (~> 3.4)
      thor (>= 0.14.6, < 2.0)
    rake (10.1.1)
    rdoc (3.12.2)
      json (~> 1.4)
    redcarpet (2.3.0)
    request_store (1.1.0)
    ruby-openid (2.3.0)
    rubyzip (1.1.6)
    selenium-webdriver (2.44.0)
      childprocess (~> 0.5)
      multi_json (~> 1.0)
      rubyzip (~> 1.0)
      websocket (~> 1.0)
    shoulda (3.3.2)
      shoulda-context (~> 1.0.1)
      shoulda-matchers (~> 1.4.1)
    shoulda-context (1.0.2)
    shoulda-matchers (1.4.1)
      activesupport (>= 3.0.0)
    sprockets (2.2.3)
      hike (~> 1.2)
      multi_json (~> 1.0)
      rack (~> 1.0)
      tilt (~> 1.1, != 1.3.0)
    thor (0.19.1)
    tilt (1.4.1)
    treetop (1.4.15)
      polyglot
      polyglot (>= 0.3.1)
    tzinfo (0.3.42)
    websocket (1.2.1)
    yard (0.8.7.6)

PLATFORMS
  ruby

DEPENDENCIES
  activerecord-jdbc-adapter (~> 1.3.2)
  activerecord-jdbcmysql-adapter
  awesome_nested_set (= 2.1.6)
  builder (= 3.0.0)
  coderay (~> 1.1.0)
  fastercsv (~> 1.5.0)
  i18n
  jquery-rails (~> 2.0.2)
  json
  libxml-ruby (>= 2.3.2)
  mime-types
  mocha (~> 1.0.0)
  mysql2 (~> 0.3.11)
  net-ldap (~> 0.3.1)
  rack-openid
  rails (= 3.2.19)
  rake (~> 10.1.1)
  rdoc (>= 2.4.2)
  redcarpet (~> 2.3.0)
  request_store
  ruby-openid (~> 2.3.0)
  selenium-webdriver
  shoulda (~> 3.3.2)
  yard


Can somebody please help me?