在Rails 3.1.3中未设置default_locale
application.rb:
config.i18n.default_locale = :en
我有3个地区(en,es和ca),当我进入我的控制台时:
I18n.locale => :ca # I guess the first one in the array
我正在使用Gettext。有人知道这可能是什么了吗?
捆绑:
Using rake (0.9.2.2)
Using Ascii85 (1.0.1)
Using ZenTest (4.5.0)
Using multi_json (1.0.4)
Using a
当我运行rake assets:precompile RAILS_ENV=production时
我得到以下错误:
/usr/local/rvm/gems/ruby-1.9.3-p327@eapi4/gems/bundler-1.3.5/lib/bundler/spec_set.rb:92:in `block in materialize': Could not find i18n-0.6.4 in any of the sources (Bundler::GemNotFound)
然而,所有的宝石都是安装的:
Using rake (10.1.0)
Using i18n (0.6.
我的Rails控制台停止工作:
$ rails c
Could not find rake-10.2.2 in any of the sources
Run `bundle install` to install missing gems.
您可能认为运行bundle install或bundle update会有效,但不会!令我困惑的是,我没有使用RAK10.2.2,而且它不在gemfile.lock中。我用的是RAK10.3.2
通过bundle exec rails console RAILS_ENV=development运行将返回相同的错误。
尝试gem install rake -
我使用的是Ruby2.4和Rails 5.0.1。我搞不懂为什么Rails说它找不到宝石。访问页面时出现此错误
Specified 'postgresql' for database adapter, but the gem is not loaded. Add `gem 'pg'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
但是,我在我的Gemfile中指定了这一点
gem 'pg'
以下是我运行"bundle
bundle install的输出
Using rake (10.1.0)
Using i18n (0.6.4)
Using multi_json (1.7.8)
Using activesupport (3.2.7)
Using builder (3.0.4)
Using activemodel (3.2.7)
Using erubis (2.7.0)
Using journey (1.0.4)
Using rack (1.4.5)
Using rack-cache (1.2)
Using rack-test (0.6.2)
Using hike (1.2.3)
Us
当我在控制台中运行rake db:migrate时:
rake aborted!
You have already activated rake 0.9.2.2, but your Gemfile requires rake 0.9.2. C
onsider using bundle exec.
(See full trace by running task with --trace)
C:\Rails\myapp>bundle install
Using rake (0.9.2)
Using abstract (1.0.0)
Using activesupport (3.0.9)
我在服务器上使用 1.1.x已经有一段时间了,我正在尝试将它升级到2.2.2。我跟踪了,现在应用程序不再工作了:
'block in materialize': Could not find builder-3.0.0 in any of the sources (Bundler::GemNotFound)
然而:
bicou@ssh:~/redmine-2.2.2$ bundle install
Using rake (10.0.3)
Using i18n (0.6.1)
Using multi_json (1.5.0)
Using activesupport (3.2.11
我安装了最新的Rspec gem和依赖项,但是当我调用script/rails generate rspec:install时,我得到这个错误:找不到生成器rspec:install。
怎么了?
Ruby 1.9.2和Rails 3.0.3
我的捆绑包列表:
Using rake (0.8.7)
Using abstract (1.0.0)
Using activesupport (3.0.3)
Using builder (2.1.2)
Using i18n (0.5.0)
Using activemodel (3.0.3)
Using erubis (2.6.6)
Using
我做了rails new awesomeapp,然后当我去做rails s时,我得到一个错误,说json-1.8.1丢失了。但是当我安装捆绑包时,它会被清楚地列出。我遗漏了什么?
Donalds-MacBook-Pro:awesomeapp · rails s
Could not find json-1.8.1 in any of the sources
Run `bundle install` to install missing gems.
Donalds-MacBook-Pro:awesomeapp · bundle install
Using rake 10.3.2
Using i1
我试图在我的Mac机器上安装Rails。我已经安装了Xcode以及终端命令工具。
这是运行$ bundle安装后的输出,我也尝试过sudo $ sudo安装,并获得了相同的结果。
Fetching gem metadata from http://rubygems.org/......
Fetching gem metadata from http://rubygems.org/..
Using rake (0.9.2.2)
Using Ascii85 (1.0.1)
Using i18n (0.6.0)
Using multi_json (1.3.6)
Using activesup
这就是我现在的航站楼。在成功地设置了rails应用程序并确保其正常工作之后。我在我的创业板文件中设置了创业板-rails。然后提交了所有内容,然后我运行了bundle安装。然后我得到了一个错误,它无法在任何一个源中找到babel源-5.8.35。但很明显它就在我的包里
➜ calendaract git:(master) bundle install
Using rake 12.3.1
Using concurrent-ruby 1.0.5
Using i18n 0.9.5
Using minitest 5.11.3
Using thread_safe 0.3.6
Using tzinfo
我对基金会图标-sass-rails有意见。
当我捆绑安装时,它安装时不会出现任何问题。
$ bundle install
Fetching gem metadata from https://rubygems.org/.........
Using rake 10.3.2
Using i18n 0.6.11
Using json 1.8.1
Using minitest 5.4.1
Using thread_safe 0.3.4
Using tzinfo 1.2.2
Using activesupport 4.1.4
Using builder 3.2.2
Using erubis 2.7.
我正在尝试在heroku上部署一个使用mongodb和mongoid的rails应用程序。一切都在本地运行得很好,但是当我部署它( heroku服务器启动正常)时,我得到一个错误,说找不到'bson‘gem:
/app/vendor/bundle/ruby/1.9.1/gems/mongo-1.3.1/lib/mongo.rb:56:in `require': no such file to load -- bson (LoadError)
奇怪的是,我把它显式地包含在我的gemfile中。当我在本地运行'bundle install‘时,Bundler会安装bson
我正在尝试使用带有rspec 2.13.0的factory_girl 4.2.0。首先,我将'factory_girl‘添加到我的Gemfile和包更新中:
Using aasm (3.0.16)
Using i18n (0.6.4)
Using multi_json (1.6.1)
Using activesupport (3.2.12)
Using builder (3.0.4)
Using activemodel (3.2.12)
Using arel (3.0.2)
Using tzinfo (0.3.36)
Using activerecord (3.2.12
当我安装gitlab时
包安装--部署--无需开发测试postgres puma aws
我知道错误:
Fetching gem metadata from https://rubygems.org/........
Fetching version metadata from https://rubygems.org/...
Fetching dependency metadata from https://rubygems.org/..
Using rake 10.4.2
Using RedCloth 4.2.9
Using ace-rails-ap 2.0.1
Using i1
我正在尝试运行rake db:migrate命令,但是当我运行它时,它告诉我没有安装gem。我将运行bundle install,它将正确执行,但它将再次告诉我没有安装gem。它告诉我没有安装的宝石是minitest-5.8.0。
这是我执行bundle install后显示的内容
Using rake 10.4.2
Using ZenTest 4.11.0
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.8.0
Using thread_safe 0.3.5
Using tzinfo 1.2.2
Using activesupport 4
在我的项目中运行bundle install提供了以下输出:
➜ <my-project> git:(main) ✗ bundle install
Ignoring eventmachine-1.2.7 because its extensions are not built. Try: gem pristine eventmachine --version 1.2.7
Ignoring ffi-1.15.5 because its extensions are not built. Try: gem pristine ffi --version 1.15.5
Ignoring
在我的sass文件中,我使用图像url(‘image.png’)来添加我的图像,但在生产环境中它们不起作用。它应该添加一个字符串到我的图像,但它没有这样做。有人知道我怎么才能解决这个问题吗?
我使用的是compass版本0.12.alpha.0和rails版本3.1.0
捆绑
Using rake (0.9.2)
Using multi_json (1.0.3)
Using activesupport (3.1.0)
Using bcrypt-ruby (3.0.1)
Using builder (3.0.0)
Using i18n (0.6.0)
Using activemode
运行包安装时
An error occurred while installing mysql2 (0.5.3), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.5.3' --source 'https://rubygems.org/'` succeeds before bundling.
Rails应用6.1.3
Bundler版本2.2.19
macOS Big Sur 11.4
苹果 M1
在Gemfile中
ruby '2.6.6'
gem
我试图使用rails生成器创建一个迁移,但是当我运行rails g migration create_meetups_table时,我得到了以下输出:
Could not find slop-3.4.7 in any of the sources
Run `bundle install` to install missing gems.
我手动安装了gem,然后再次运行bundle install并获得了以下输出:
Using i18n 0.6.9
Using json 1.8.1
Using minitest 5.3.4
Using thread_safe 0.3.4
Using build
有问题想要安装包安装--我一直收到这个错误消息,我做错了什么?请帮帮忙。
Using rake (10.1.0)
Using i18n (0.6.1)
Using multi_json (1.8.2)
Using activesupport (3.2.13)
Using builder (3.0.4)
Using activemodel (3.2.13)
Using erubis (2.7.0)
Using journey (1.0.4)
Using rack (1.4.5)
Using rack-cache (1.2)
Using rack-test (0.6.2)
U
我已经读了两个小时的StackOverflow并试图处理这个错误:
bundle exec rake db:setup
Could not find rake-10.4.2 in any of the sources
Run `bundle install` to install missing gems.
我听从了这里的建议,但没有结果:
此外:
所以我做了:
gem uninstall rake
gem install rake
而且,在我读到的其他StackOverflow文章之后,我试着:
rbenv install 2.3.1
Downloa
我试着在hudson中使用rails插件,但我得到了以下错误,我不知道该如何做,请遵循堆栈:
Updating URL revision: Jan 18, 2012 1:01:56 PM depth:infinity ignoreExternals: false
At revision 21
no change for URL since the previous build
[workspace] $ /bin/sh -xe /etc/tomcat6/apache-tomcat-6.0.35/temp/hudson9010951436400252341.sh
+ cd Hermodr
+ c
我想使用当前Ruby on Rails版本的Twitter Bootstrap。我尝试使用"less-rails-bootstrap“。我关注了:
我创建了一个新的rails项目。然后我在Gemfile中添加了"gem 'less-rails-bootstrap'“,安装了它,然后在application.css中添加了”*= require twitter/bootstrap“
我得到了这个错误:
Showing /var/www/lrb/app/views/layouts/application.html.erb where line #5 raised:
我有一个非常简单(实际上是空的)项目,它是由rails新的MyProject命令从命令行创建的。因此,我想将它导入到NetBeans IDE中。我单击"new“-> "RoR”RoR“->”,在向导表单中选择Ruby1.9.2(而不是嵌入式JRuby)。在此之后,我发现了错误,请参见下面的图片:
所以..。我点击OK。然后尝试从RoR中运行NetBeans应用程序,单击run按钮,在日志面板中得到以下错误:
/home/ses/.rvm/rubies/ruby-1.9.2-p136/bin/ruby: No such file or directory -- sc
我刚刚更新了rails 3,使用rvm和ruby 1.9.2-p0。
当我运行我的黄瓜规范时,我得到了以下奇怪的警告
/home/ubuntu/.rvm/gems/ruby-1.9.2-p0/gems/rack-1.2.1/lib/rack/utils.rb:16: warning: regexp match /.../n against to UTF-8 string
/home/ubuntu/.rvm/gems/ruby-1.9.2-p0/gems/rack-1.2.1/lib/rack/utils.rb:16: warning: regexp match /.../n against
我使用RVM和rails,当我执行bundle install时,它显示的宝石比我做gem list时显示的还要多?与rvm有关,它使用哪条路径?
包安装
mds@db1:~/staging$ bundle
Using rake (0.9.6)
Using Ascii85 (1.0.1)
Using Platform (0.4.0)
Using open4 (1.3.0)
Using POpen4 (0.1.4)
Using activesupport (2.3.17)
Using rack (1.1.6)
Using actionpack (2.3.17)
Using act
我试图在我的rails应用程序中使用libxml。然而,我得到了错误:
无法加载这样的文件- libxml
如您所见,libxml安装在我的gems中:
Fetching gem metadata from https://rubygems.org/...........
Resolving dependencies...
Using rake 10.3.2
Using i18n 0.6.11
Using json 1.8.1
Using minitest 5.4.0
Using thread_safe 0.3.4
Using tzinfo 1.2.2
Using activesupp