Mysql 试图使用capistrano部署-不断收到pg包错误-但我';我不使用pg

Mysql 试图使用capistrano部署-不断收到pg包错误-但我';我不使用pg,mysql,ruby-on-rails-3,gem,capistrano,bundler,Mysql,Ruby On Rails 3,Gem,Capistrano,Bundler,大家好,我一直在尝试使用capistrano部署我的应用程序。然而,我不断地遇到以下错误,不知道如何解决它 * executing "cd /var/www/html/mysite.com/releases/20130224075438 && bundle install --gemfile /var/www/html/mysite.com/releases/20130224075438/Gemfile --path /var/www/html/mysite.com/shared

大家好,我一直在尝试使用capistrano部署我的应用程序。然而,我不断地遇到以下错误,不知道如何解决它

* executing "cd /var/www/html/mysite.com/releases/20130224075438 && bundle install --gemfile /var/www/html/mysite.com/releases/20130224075438/Gemfile --path /var/www/html/mysite.com/shared/bundle --deployment --quiet --without development test"
    servers: ["166.78.22.204"]
    [166.78.22.204] executing command
 ** [out :: 166.78.22.204] Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
 ** [out :: 166.78.22.204] 
 ** [out :: 166.78.22.204] /usr/local/bin/ruby extconf.rb
 ** [out :: 166.78.22.204] checking for pg_config... no
 ** [out :: 166.78.22.204] No pg_config... trying anyway. If building fails, please try again with
 ** [out :: 166.78.22.204] --with-pg-config=/path/to/pg_config
 ** [out :: 166.78.22.204] checking for libpq-fe.h... no
 ** [out :: 166.78.22.204] Can't find the 'libpq-fe.h header
 ** [out :: 166.78.22.204] *** extconf.rb failed ***
 ** [out :: 166.78.22.204] Could not create Makefile due to some reason, probably lack of
 ** [out :: 166.78.22.204] necessary libraries and/or headers.  Check the mkmf.log file for more
 ** [out :: 166.78.22.204] details.  You may need configuration options.
 ** [out :: 166.78.22.204] 
 ** [out :: 166.78.22.204] Provided configuration options:
 ** [out :: 166.78.22.204] --with-opt-dir
 ** [out :: 166.78.22.204] --with-opt-include
 ** [out :: 166.78.22.204] --without-opt-include=${opt-dir}/include
 ** [out :: 166.78.22.204] --with-opt-lib
 ** [out :: 166.78.22.204] --without-opt-lib=${opt-dir}/lib
 ** [out :: 166.78.22.204] --with-make-prog
 ** [out :: 166.78.22.204] --without-make-prog
 ** [out :: 166.78.22.204] --srcdir=.
 ** [out :: 166.78.22.204] --curdir
 ** [out :: 166.78.22.204] --ruby=/usr/local/bin/ruby
 ** [out :: 166.78.22.204] --with-pg
 ** [out :: 166.78.22.204] --without-pg
 ** [out :: 166.78.22.204] --with-pg-dir
 ** [out :: 166.78.22.204] --without-pg-dir
 ** [out :: 166.78.22.204] --with-pg-include
 ** [out :: 166.78.22.204] --without-pg-include=${pg-dir}/include
 ** [out :: 166.78.22.204] --with-pg-lib
 ** [out :: 166.78.22.204] --without-pg-lib=${pg-dir}/lib
 ** [out :: 166.78.22.204] --with-pg-config
 ** [out :: 166.78.22.204] --without-pg-config
 ** [out :: 166.78.22.204] --with-pg_config
 ** [out :: 166.78.22.204] --without-pg_config
 ** [out :: 166.78.22.204] 
 ** [out :: 166.78.22.204] 
 ** [out :: 166.78.22.204] Gem files will remain installed in /var/www/html/mysite.com/shared/bundle/ruby/1.9.1/gems/pg-0.14.1 for inspection.
 ** [out :: 166.78.22.204] Results logged to /var/www/html/mysite.com/shared/bundle/ruby/1.9.1/gems/pg-0.14.1/ext/gem_make.out
 ** [out :: 166.78.22.204] An error occurred while installing pg (0.14.1), and Bundler cannot continue.
 ** [out :: 166.78.22.204] Make sure that `gem install pg -v '0.14.1'` succeeds before bundling.
    command finished in 95532ms
*** [deploy:update_code] rolling back
  * executing "rm -rf /var/www/html/mysite.com/releases/20130224075438; true"
    servers: ["166.78.22.204"]
    [166.78.22.204] executing command
    command finished in 712ms
failed: "sh -c 'cd /var/www/html/mysite.com/releases/20130224075438 && bundle install --gemfile /var/www/html/fltctr.com/releases/20130224075438/Gemfile --path /var/www/html/fltctr.com/shared/bundle --deployment --quiet --without development test'" on 166.78.22.204
我可以说pg无法安装,但是我的应用程序使用的是mysql,而不是pg。这是我的档案

require 'rbconfig'
HOST_OS = RbConfig::CONFIG['host_os']
source 'https://rubygems.org'

gem 'rails', '3.2.3'

gem 'mysql2'

gem 'activerecord-postgresql-adapter'
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem "thin", ">= 1.5.0", :group => :production
gem "haml", ">= 3.1.7"
gem "haml-rails", ">= 0.3.5", :group => :development
gem "hpricot", ">= 0.8.6", :group => :development
gem "ruby_parser", ">= 3.1.1", :group => :development
gem "rspec-rails", ">= 2.11.4", :group => [:development, :test]
gem "database_cleaner", ">= 0.9.1", :group => :test
gem "email_spec", ">= 1.4.0", :group => :test
gem "cucumber-rails", ">= 1.3.0", :group => :test, :require => false
gem "launchy", ">= 2.1.2", :group => :test
gem "capybara", ">= 2.0.1", :group => :test
gem "factory_girl_rails", ">= 4.1.0", :group => [:development, :test]
gem "bootstrap-sass", ">= 2.2.2.0"
gem "devise", ">= 2.1.2"
gem "cancan", ">= 1.6.8"
gem "rolify", ">= 3.2.0"
gem "simple_form", ">= 2.0.4"
gem "quiet_assets", ">= 1.0.1", :group => :development
gem "figaro", ">= 0.5.0"
gem "better_errors", ">= 0.3.2", :group => :development
gem "binding_of_caller", ">= 0.6.8", :group => :development
gem "libv8", ">= 3.11.8"
gem "therubyracer", ">= 0.11.0", :group => :assets, :platform => :ruby, :require => "v8"
#gem 'wkhtmltopdf'
#gem 'wicked_pdf'
gem "handles_sortable_columns"

#custom gems go here
gem 'best_in_place'
gem 'bootstrap-datepicker-rails'
gem 'state_machine'
gem 'bootswatch-rails'
gem 'acts_as_commentable'
#gem 'wkhtmltopdf-binary'
#gem "pdfkit"  
gem 'kaminari'
gem 'has_scope'
#gem 'class-table-inheritance'
gem 'citier'
gem 'rails_sql_views', :git => 'git://github.com/DouweM/rails_sql_views.git'#,  :git=>'git://github.com/flwyd/rails_sql_views.git' #'git://github.com/DouweM/rails_sql_views.git' #'git://github.com/morgz/rails_sql_views.git' #
gem 'country_select'

group :development do
  gem 'rack-mini-profiler'
  gem 'spork', '~> 1.0rc'
  gem "guard", ">= 0.6.2"
  gem 'guard-spork'
  gem 'guard-livereload'
  gem "guard-bundler", ">= 0.1.3"
  gem "guard-rails", ">= 0.0.3"
  gem "guard-rspec", ">= 0.4.3"
  gem "guard-cucumber", ">= 0.6.1"
  case HOST_OS
  when /darwin/i
    gem 'rb-fsevent'
    gem 'growl'
  when /linux/i
    gem 'libnotify'
    gem 'rb-inotify'
  when /mswin|windows/i
    gem 'rb-fchange'
    gem 'win32console'
    gem 'rb-notifu'
  end
end

group :test do
  gem "shoulda-matchers"
  gem 'simplecov', :require => false

end
我正在部署到一个云服务器上——这里有没有关于可能出现什么问题的想法?每次我使用
cap deploy

这是我的Gemfile.lock

    GIT
  remote: git://github.com/DouweM/rails_sql_views.git
  revision: 0cf1af369a5f6553d33c90a13d331ea49e607d26
  specs:
    rails_sql_views (0.8.0.epublishing)
      activerecord

GEM
  remote: https://rubygems.org/
  specs:
    actionmailer (3.2.3)
      actionpack (= 3.2.3)
      mail (~> 2.4.4)
    actionpack (3.2.3)
      activemodel (= 3.2.3)
      activesupport (= 3.2.3)
      builder (~> 3.0.0)
      erubis (~> 2.7.0)
      journey (~> 1.0.1)
      rack (~> 1.4.0)
      rack-cache (~> 1.2)
      rack-test (~> 0.6.1)
      sprockets (~> 2.1.2)
    activemodel (3.2.3)
      activesupport (= 3.2.3)
      builder (~> 3.0.0)
    activerecord (3.2.3)
      activemodel (= 3.2.3)
      activesupport (= 3.2.3)
      arel (~> 3.0.2)
      tzinfo (~> 0.3.29)
    activerecord-postgresql-adapter (0.0.1)
      pg
    activeresource (3.2.3)
      activemodel (= 3.2.3)
      activesupport (= 3.2.3)
    activesupport (3.2.3)
      i18n (~> 0.6)
      multi_json (~> 1.0)
    acts_as_commentable (4.0.0)
    addressable (2.3.3)
    arel (3.0.2)
    bcrypt-ruby (3.0.1)
    best_in_place (2.1.0)
      jquery-rails
      rails (~> 3.1)
    better_errors (0.6.0)
      coderay (>= 1.0.0)
      erubis (>= 2.6.6)
    binding_of_caller (0.7.1)
      debug_inspector (>= 0.0.1)
    bootstrap-datepicker-rails (0.6.42)
      railties (>= 3.0)
    bootstrap-sass (2.3.0.1)
      sass (~> 3.2)
    bootswatch-rails (0.4.0)
      railties (>= 3.1)
    bourne (1.1.2)
      mocha (= 0.10.5)
    builder (3.0.4)
    cancan (1.6.9)
    capybara (2.0.2)
      mime-types (>= 1.16)
      nokogiri (>= 1.3.3)
      rack (>= 1.0.0)
      rack-test (>= 0.5.4)
      selenium-webdriver (~> 2.0)
      xpath (~> 1.0.0)
    childprocess (0.3.8)
      ffi (~> 1.0, >= 1.0.11)
    citier (0.1.15)
      rails_sql_views
    coderay (1.0.9)
    coffee-rails (3.2.2)
      coffee-script (>= 2.2.0)
      railties (~> 3.2.0)
    coffee-script (2.2.0)
      coffee-script-source
      execjs
    coffee-script-source (1.4.0)
    country_select (1.1.3)
    cucumber (1.2.1)
      builder (>= 2.1.2)
      diff-lcs (>= 1.1.3)
      gherkin (~> 2.11.0)
      json (>= 1.4.6)
    cucumber-rails (1.3.0)
      capybara (>= 1.1.2)
      cucumber (>= 1.1.8)
      nokogiri (>= 1.5.0)
    daemons (1.1.9)
    database_cleaner (0.9.1)
    debug_inspector (0.0.2)
    devise (2.2.3)
      bcrypt-ruby (~> 3.0)
      orm_adapter (~> 0.1)
      railties (~> 3.1)
      warden (~> 1.2.1)
    diff-lcs (1.1.3)
    em-websocket (0.4.0)
      eventmachine (>= 0.12.9)
      http_parser.rb (~> 0.5.3)
    email_spec (1.4.0)
      launchy (~> 2.1)
      mail (~> 2.2)
    erubis (2.7.0)
    eventmachine (1.0.0)
    execjs (1.4.0)
      multi_json (~> 1.0)
    factory_girl (4.2.0)
      activesupport (>= 3.0.0)
    factory_girl_rails (4.2.1)
      factory_girl (~> 4.2.0)
      railties (>= 3.0.0)
    ffi (1.4.0)
    figaro (0.5.4)
      rails (~> 3.0)
    gherkin (2.11.6)
      json (>= 1.7.6)
    guard (1.6.2)
      listen (>= 0.6.0)
      lumberjack (>= 1.0.2)
      pry (>= 0.9.10)
      terminal-table (>= 1.4.3)
      thor (>= 0.14.6)
    guard-bundler (1.0.0)
      bundler (~> 1.0)
      guard (~> 1.1)
    guard-cucumber (1.3.2)
      cucumber (>= 1.2.0)
      guard (>= 1.1.0)
    guard-livereload (1.1.3)
      em-websocket (>= 0.2.0)
      guard (>= 1.5.0)
      multi_json (~> 1.0)
    guard-rails (0.3.1)
      guard (>= 0.2.2)
      version (>= 1.0.0)
    guard-rspec (2.4.1)
      guard (>= 1.1)
      rspec (~> 2.11)
    guard-spork (1.4.2)
      childprocess (>= 0.2.3)
      guard (>= 1.1)
      spork (>= 0.8.4)
    haml (4.0.0)
      tilt
    haml-rails (0.4)
      actionpack (>= 3.1, < 4.1)
      activesupport (>= 3.1, < 4.1)
      haml (>= 3.1, < 4.1)
      railties (>= 3.1, < 4.1)
    handles_sortable_columns (0.1.3)
    has_scope (0.5.1)
    hike (1.2.1)
    hpricot (0.8.6)
    http_parser.rb (0.5.3)
    i18n (0.6.1)
    journey (1.0.4)
    jquery-rails (2.2.1)
      railties (>= 3.0, < 5.0)
      thor (>= 0.14, < 2.0)
    jquery-ui-rails (4.0.1)
      jquery-rails
      railties (>= 3.1.0)
    json (1.7.7)
    kaminari (0.14.1)
      actionpack (>= 3.0.0)
      activesupport (>= 3.0.0)
    launchy (2.2.0)
      addressable (~> 2.3)
    libnotify (0.8.0)
      ffi (>= 1.0.11)
    libv8 (3.11.8.13)
    listen (0.7.2)
    lumberjack (1.0.2)
    mail (2.4.4)
      i18n (>= 0.4.0)
      mime-types (~> 1.16)
      treetop (~> 1.4.8)
    metaclass (0.0.1)
    method_source (0.8.1)
    mime-types (1.21)
    mocha (0.10.5)
      metaclass (~> 0.0.1)
    multi_json (1.6.1)
    mysql2 (0.3.11)
    nokogiri (1.5.6)
    orm_adapter (0.4.0)
    pg (0.14.1)
    polyglot (0.3.3)
    pry (0.9.12)
      coderay (~> 1.0.5)
      method_source (~> 0.8)
      slop (~> 3.4)
    quiet_assets (1.0.2)
      railties (>= 3.1, < 5.0)
    rack (1.4.5)
    rack-cache (1.2)
      rack (>= 0.4)
    rack-mini-profiler (0.1.23)
      rack (>= 1.1.3)
    rack-ssl (1.3.3)
      rack
    rack-test (0.6.2)
      rack (>= 1.0)
    rails (3.2.3)
      actionmailer (= 3.2.3)
      actionpack (= 3.2.3)
      activerecord (= 3.2.3)
      activeresource (= 3.2.3)
      activesupport (= 3.2.3)
      bundler (~> 1.0)
      railties (= 3.2.3)
    railties (3.2.3)
      actionpack (= 3.2.3)
      activesupport (= 3.2.3)
      rack-ssl (~> 1.3.2)
      rake (>= 0.8.7)
      rdoc (~> 3.4)
      thor (~> 0.14.6)
    rake (10.0.3)
    rb-inotify (0.9.0)
      ffi (>= 0.5.0)
    rdoc (3.12.1)
      json (~> 1.4)
    ref (1.0.2)
    rolify (3.2.0)
    rspec (2.12.0)
      rspec-core (~> 2.12.0)
      rspec-expectations (~> 2.12.0)
      rspec-mocks (~> 2.12.0)
    rspec-core (2.12.2)
    rspec-expectations (2.12.1)
      diff-lcs (~> 1.1.3)
    rspec-mocks (2.12.2)
    rspec-rails (2.12.2)
      actionpack (>= 3.0)
      activesupport (>= 3.0)
      railties (>= 3.0)
      rspec-core (~> 2.12.0)
      rspec-expectations (~> 2.12.0)
      rspec-mocks (~> 2.12.0)
    ruby_parser (3.1.1)
      sexp_processor (~> 4.1)
    rubyzip (0.9.9)
    sass (3.2.6)
    sass-rails (3.2.6)
      railties (~> 3.2.0)
      sass (>= 3.1.10)
      tilt (~> 1.3)
    selenium-webdriver (2.30.0)
      childprocess (>= 0.2.5)
      multi_json (~> 1.0)
      rubyzip
      websocket (~> 1.0.4)
    sexp_processor (4.1.5)
    shoulda-matchers (1.4.2)
      activesupport (>= 3.0.0)
      bourne (~> 1.1.2)
    simple_form (2.0.4)
      actionpack (~> 3.0)
      activemodel (~> 3.0)
    simplecov (0.7.1)
      multi_json (~> 1.0)
      simplecov-html (~> 0.7.1)
    simplecov-html (0.7.1)
    slop (3.4.3)
    spork (1.0.0rc3)
    sprockets (2.1.2)
      hike (~> 1.2)
      rack (~> 1.0)
      tilt (~> 1.1, != 1.3.0)
    state_machine (1.1.2)
    terminal-table (1.4.5)
    therubyracer (0.11.3)
      libv8 (~> 3.11.8.12)
      ref
    thin (1.5.0)
      daemons (>= 1.0.9)
      eventmachine (>= 0.12.6)
      rack (>= 1.0.0)
    thor (0.14.6)
    tilt (1.3.3)
    treetop (1.4.12)
      polyglot
      polyglot (>= 0.3.1)
    tzinfo (0.3.35)
    uglifier (1.3.0)
      execjs (>= 0.3.0)
      multi_json (~> 1.0, >= 1.0.2)
    version (1.0.0)
    warden (1.2.1)
      rack (>= 1.0)
    websocket (1.0.7)
    xpath (1.0.0)
      nokogiri (~> 1.3)

PLATFORMS
  ruby

DEPENDENCIES
  activerecord-postgresql-adapter
  acts_as_commentable
  best_in_place
  better_errors (>= 0.3.2)
  binding_of_caller (>= 0.6.8)
  bootstrap-datepicker-rails
  bootstrap-sass (>= 2.2.2.0)
  bootswatch-rails
  cancan (>= 1.6.8)
  capybara (>= 2.0.1)
  citier
  coffee-rails (~> 3.2.1)
  country_select
  cucumber-rails (>= 1.3.0)
  database_cleaner (>= 0.9.1)
  devise (>= 2.1.2)
  email_spec (>= 1.4.0)
  factory_girl_rails (>= 4.1.0)
  figaro (>= 0.5.0)
  guard (>= 0.6.2)
  guard-bundler (>= 0.1.3)
  guard-cucumber (>= 0.6.1)
  guard-livereload
  guard-rails (>= 0.0.3)
  guard-rspec (>= 0.4.3)
  guard-spork
  haml (>= 3.1.7)
  haml-rails (>= 0.3.5)
  handles_sortable_columns
  has_scope
  hpricot (>= 0.8.6)
  jquery-rails
  jquery-ui-rails
  kaminari
  launchy (>= 2.1.2)
  libnotify
  libv8 (>= 3.11.8)
  mysql2
  quiet_assets (>= 1.0.1)
  rack-mini-profiler
  rails (= 3.2.3)
  rails_sql_views!
  rb-inotify
  rolify (>= 3.2.0)
  rspec-rails (>= 2.11.4)
  ruby_parser (>= 3.1.1)
  sass-rails (~> 3.2.3)
  shoulda-matchers
  simple_form (>= 2.0.4)
  simplecov
  spork (~> 1.0rc)
  state_machine
  therubyracer (>= 0.11.0)
  thin (>= 1.5.0)
  uglifier (>= 1.0.3)
GIT
远程:git://github.com/DouweM/rails_sql_views.git
修订:0cf1af369a5f6553d33c90a13d331ea49e607d26
规格:
rails\u sql\u视图(0.8.0.epublishing)
活动记录
宝石
远程:https://rubygems.org/
规格:
actionmailer(3.2.3)
actionpack(=3.2.3)
邮件(~>2.4.4)
actionpack(3.2.3)
活动模型(=3.2.3)
主动支持(=3.2.3)
生成器(~>3.0.0)
erubis(~>2.7.0)
旅程(~>1.0.1)
机架(~>1.4.0)
机架缓存(~>1.2)
机架测试(~>0.6.1)
链轮(~>2.1.2)
activemodel(3.2.3)
主动支持(=3.2.3)
生成器(~>3.0.0)
activerecord(3.2.3)
活动模型(=3.2.3)
主动支持(=3.2.3)
arel(~>3.0.2)
tzinfo(~>0.3.29)
activerecord postgresql适配器(0.0.1)
pg
activeresource(3.2.3)
活动模型(=3.2.3)
主动支持(=3.2.3)
activesupport(3.2.3)
i18n(~>0.6)
多重json(~>1.0)
作为可评论的(4.0.0)
可寻址(2.3.3)
阿雷尔(3.0.2)
bcrypt ruby(3.0.1)
最佳位置(2.1.0)
jquery rails
轨道(~>3.1)
更好的_错误(0.6.0)
coderay(>=1.0.0)
erubis(>=2.6.6)
绑定调用方的调用(0.7.1)
调试检查程序(>=0.0.1)
引导日期选择器轨道(0.6.42)
钢轨(>=3.0)
引导式sass(2.3.0.1)
sass(~>3.2)
引导样例轨道(0.4.0)
钢轨(>=3.1)
伯恩(1.1.2)
摩卡咖啡(=0.10.5)
建筑商(3.0.4)
坎坎(1.6.9)
水豚(2.0.2)
mime类型(>=1.16)
nokogiri(>=1.3.3)
机架(>=1.0.0)
机架测试(>=0.5.4)
selenium webdriver(~>2.0)
xpath(~>1.0.0)
子进程(0.3.8)
外国金融机构(~>1.0,>=1.0.11)
花旗银行(0.1.15)
rails\u sql\u视图
coderay(1.0.9)
咖啡架(3.2.2)
咖啡脚本(>=2.2.0)
钢轨(~>3.2.0)
咖啡脚本(2.2.0)
咖啡脚本源
execjs
coffee脚本源代码(1.4.0)
国家/地区选择(1.1.3)
黄瓜(1.2.1)
建造商(>=2.1.2)
差异lcs(>=1.1.3)
小黄瓜(~>2.11.0)
json(>=1.4.6)
黄瓜轨道(1.3.0)
水豚(>=1.1.2)
黄瓜(>=1.1.8)
nokogiri(>=1.5.0)
守护进程(1.1.9)
数据库清理器(0.9.1)
调试检查程序(0.0.2)
设计(2.2.3)
bcrypt红宝石(~>3.0)
orm_适配器(~>0.1)
钢轨(~>3.1)
典狱长(~>1.2.1)
差异lcs(1.1.3)
em websocket(0.4.0)
eventmachine(>=0.12.9)
http_parser.rb(~>0.5.3)
电子邮件规格(1.4.0)
发射(~>2.1)
邮件(~>2.2)
erubis(2.7.0)
eventmachine(1.0.0)
execjs(1.4.0)
多重json(~>1.0)
工厂女孩(4.2.0)
activesupport(>=3.0.0)
工厂导轨(4.2.1)
工厂女孩(~>4.2.0)
钢轨(>=3.0.0)
外国金融机构(1.4.0)
费加罗(0.5.4)
轨道(~>3.0)
小黄瓜(2.11.6)
json(>=1.7.6)
防护罩(1.6.2)
倾听(>=0.6.0)
伐木工人(>=1.0.2)
撬动(>=0.9.10)
终端表(>=1.4.3)
雷神(>=0.14.6)
防护捆扎机(1.0.0)
捆扎机(~>1.0)
防护罩(~>1.1)
保护黄瓜(1.3.2)
黄瓜(>=1.2.0)
防护罩(>=1.1.0)
护卫利弗雷洛德(1.1.3)
em websocket(>=0.2.0)
防护罩(>=1.5.0)
多重json(~>1.0)
护栏(0.3.1)
防护罩(>=0.2.2)
版本(>=1.0.0)
防护罩rspec(2.4.1)
防护罩(>=1.1)
rspec(~>2.11)
防护罩(1.4.2)
子进程(>=0.2.3)
防护罩(>=1.1)
spork(>=0.8.4)
haml(4.0.0)
倾斜
haml钢轨(0.4)
actionpack(>=3.1,<4.1)
activesupport(>=3.1,<4.1)
haml(>=3.1,<4.1)
钢轨(>=3.1,<4.1)
句柄\可排序\列(0.1.3)
具有_范围(0.5.1)
徒步旅行(1.2.1)
hpricot(0.8.6)
http_parser.rb(0.5.3)
i18n(0.6.1)
旅程(1.0.4)
jquery rails(2.2.1)
钢轨(>=3.0,<5.0)
雷神(>=0.14,<2.0)
jQueryUIRails(4.0.1)
jquery rails
钢轨(>=3.1.0)
json(1.7.7)
卡米纳里(0.14.1)
actionpack(>=3.0.0)
activesupport(>=3.0.0)
launchy(2.2.0)
可寻址(~>2.3)
libnotify(0.8.0)
外国金融机构(>=1.0.11)
libv8(3.11.8.13)
听(0.7.2)
伐木工人(1.0.2)
邮件(2.4.4)
i18n(>=0.4.0)
mime类型(~>1.16)
树梢(~>1.4.8)
元类(0.0.1)
方法_来源(0.8.1)
mime类型(1.21)
摩卡咖啡(0.10.5)
元类(~>0.0.1)
多线程json(1.6.1)
mysql2(0.3.11)
nokogiri(1.5.6)
orm_适配器(0.4.0)
pg(0.14.1)
polyglot(0.3.3)
撬动(0.9.12)
coderay(~>1.0.5)
方法\u来源(~>0.8)
坡度(~>3.4)
安静资产(1.0.2)
钢轨(>=3.1,<5.0)
机架(1.4.5)
机架缓存(1.2)
机架(>=0.4)
机架式微型轮廓仪(0.1.23)
机架(>=1.1.3)
机架ssl(1.3.3)
支架
机架测试(0.6.2)
机架(>=1.0)
轨道(3.2.3)
actionmailer(=3.2.3)
actionpack(=3.2.3)
活动记录(=3.2.3)
活动资源(=3.2.3)
主动支持(=3.2.3)
捆扎机(~>1.0)
栏杆(=3.2.3)
栏杆(3.2.3)
actionpack(=3.2.3)
主动支持(=3.2.3)
机架ssl(~>1.3.2)
耙(大于等于0.8.7)
rdoc(~>3.4)
雷神(~>0.14.6)
耙(10.0.3)
rb inotify(0.9.0)
外国金融机构(>=0。