Tagged Questions
0
votes
1answer
129 views
Setting up Local Development Vagrant version backward compatibility, config.vm.customize
I am trying to participate in the open source software catarse on github
I am going through this wiki to install catarse on my local machine
...
0
votes
1answer
203 views
Ruby Rails Environment Completely Down about Paths, installation and brew
and Thank you for Helping me!
Long story short, I put this in the terminal
curl https://raw.github.com/gist/1688857/rbenv.sh | sh ; rbenv global 1.9.3-p327-perf
I ended up downloading/installing ...
0
votes
1answer
184 views
Using Rails 3 autoload paths isn't loading some folders but is loading others
I'm using the autoload path's in the application.rb to loads some extra modules and structs.
This is the following bit of code doing it:
config.autoload_paths += %W(
...
3
votes
2answers
39 views
How do I detect in rails if I am running a rake command?
In Rails, you might want your environment to do different things on startup depending on if you are running a rake task or not. For instance, my use case was having several hundred MB of cache loaded ...
0
votes
2answers
31 views
What is the correct way to run Rails tests without invoking the development environment?
I have an Rails app, with some initializer code which must be executed when the app is running in development mode. However, this initializer code must not be executed when running tests.
I have ...
1
vote
1answer
49 views
How can I determine if my rails is in the development environment and not the test environment?
I have some code that needs to run only if the rails app is in the development environment (i.e. $ rails server) but not in the test environment (i.e. $ rake test).
When I try
if ...
0
votes
2answers
61 views
Problems with Rails on Namecheap server
O. Community, and thanks in advance for the support!
I recently took Mattan Griffel's One Month Rails course on skillshare to be able to write rails web apps.
Railsinstaller.org includes rails 3.2.1 ...
1
vote
1answer
59 views
Logging in a gem that is used both inside and outside rails
What's a proper approach to this: I've got a gem that can be used both with or without rails - if it is used within rails, I'd like to re-use rails-services e.g. the configured logger. If it is ...
0
votes
2answers
435 views
Choosing up a Ruby / rails enviroment under windows 8 [closed]
I am a junior programmer and beginning web developer seeking to build a reasonable developement enviroment under windows 8. I bought a new computer a few days ago and for a bunch of different reasons ...
0
votes
1answer
55 views
Mute Rails memcache logging in development env
Would like to mute large amount of dalli output in development log & STOUT.
0
votes
2answers
172 views
What is the difference between config.time_zone and config.local_zone and when should both be set?
What is the difference between config.time_zone and config.local_zone? Is there a situation when should both be set?
1
vote
1answer
702 views
Completed 500 Internal Server Error; RestClient::NotAcceptable (406 Not Acceptable)
I'm pretty new in Rails and on stackoverflow so I'll try to be explicite.
I was asking to change someone project, so I get the sources and try to make it works on
my own work computer (that's on ...
0
votes
1answer
92 views
How to include all lib folder?
I want to extend core Array class with simple method:
class Array
def to_hash
result = Hash.new
self.each { |a| result[a] = '' }
result
end
end
I put array.rb into lib/core_ext and ...
1
vote
1answer
59 views
git repository move rails application code to live to test repositories
Hello I am having Two Branches on Github for the Rails Application.
One is Test and Other is Live.
Problem is Live branch is having the latest changes on it and Test is not having the lates changes. ...
-1
votes
2answers
214 views
Cucumber is not working with rails 2.3.14 & ruby 1.8.7/ree
My enviorenment:
**Rails - 2.3.14
Ruby - ree/ruby 1.8.7**
I am trying to use cucumber for the first time. I followed => http://railscasts.com/episodes/155-beginning-with-cucumber for my existing ...
1
vote
2answers
278 views
Multi-staging environment for Rails with Nginx
I have created new environment "staging". Locally it works. I run it this way:
RAILS_ENV=staging passenger start
On server I use Nginx + passenger. In virtual host settings I have written:
server ...
0
votes
2answers
95 views
All test related tasks running in development envrionment — Rails 3
When I run a task that should be running in the test environment, it is running in development. This includes rake test:(units/functionals/integration) and rake db:test:prepare. A side effect is ...
0
votes
2answers
105 views
Disable certain emails in ActionMailer
I would like to turn off certain emails in development and on test/staging servers, but keep sending them in production. What I currently do is set the default "to" address for these administrative ...
0
votes
2answers
90 views
Maintaining Rails environment through multiple deployment phases
I've been using Capistrano to deploy several rails apps to a single EC2 instance. The apps are all served with Apache + Passenger. The deployment phases form most of them is as follows:
-- fetch ...
0
votes
1answer
156 views
Rails Test Environment Named Routes
I've noticed that when I run tests (using Rspec and spork, if that matters), my hostname is set to www.example.com. So if I do:
visit sports_url
the test is actually going to ...
3
votes
2answers
1k views
Config variables available in rails environment file
I'm currently using an initializer to load a config.yml file into an AppConfig hash which offers access to variables for the environment. For production I am using environmental variables set on the ...
1
vote
2answers
306 views
SystemStackError in Rails production
When config.assets.compile = true is set in production environment (Rails 3.2) then the SystemStackError is raised.
The workaround is to set it to false (which is ugly really).
This doesn't happen ...
0
votes
2answers
283 views
Slow loading app in Rails 3
I have an app based on Rails 3 (version Rails 3.1.2) and ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin10.8.0]. The loading of the app is so slow, right now, when I tried it, I was waiting ...
5
votes
1answer
2k views
How to use seed.rb to selectively populate development and/or production databases?
I am using seed.rb to populate both my development and production database. I usually populate the first with dummy data and the latter with the real minimal data that my app needs to run (e.g. the ...
8
votes
1answer
3k views
Boot rails 3.1 in different environment
Trying to boot a Rails 3.1 app locally in production mode.
rails s
will boot into development just fine. When I try
rails s production
I get the error:
...
1
vote
1answer
907 views
Better way to organize Rails initializers
in my current Rails project I ended up with a lot of environment-specific initializers, for example my carrierwave.rb:
For development I use something like:
CarrierWave.configure do |config|
...
0
votes
3answers
3k views
Installing Gems without rvm, as root, with explicit version of ruby
I've decided to get rid of rvm, and I'm having trouble compiling a gem with my new version of ruby 1.9.2. The gem requires 1.9.2, I have it, yet says it can't install without, so the error messages ...
1
vote
1answer
362 views
How can I test error pages in rails development environment?
I want to design my 404 page in my Rails 3.0.7 app.
If I request a non existing page I get the development output
Routing Error
No route matches "/foo"
I tried the following answers in:
...
1
vote
1answer
122 views
How can I use classes in my RAILS_HOME/lib folder in my RAILS_HOME/config/environments/* files?
I have configuration data (the host/post for a Redis server) that is managed by a class (RedisConfig) in my RAILS_HOME/lib folder. We decided to use redis-store as our cache.
This is what we have in ...
0
votes
1answer
136 views
rails environments mixup, development server uses production db
In the first few rails app I setup for small apps to learn I used
RAILS_ENV=production rake db:setup
and it created the (mysql) tables on myapp_production
But this time I am not able to populate ...
2
votes
2answers
583 views
Passenger misses development gem in production environment
I've got a strange behaviour on my production server: I deploy my Rails 3 application via Capistrano to the production server. The Capistrano script restarts passenger at the end of deployment. When I ...
5
votes
5answers
514 views
How to use git to maintain a slightly different copy of production source code?
I have a Ruby on Rails application, which sends out emails.
In production, I want to use some X SMTP server, but in development I want to use some other SMTP server (thus my configuration file for ...
9
votes
2answers
4k views
Rails: Make this rake task aware that it is in the test environment
I have the following rake task defined in my lib/tasks folder:
namespace :db do
namespace :test do
task :prepare => :environment do
Rake::Task["db:seed"].invoke
end
end
end
...
0
votes
1answer
125 views
0
votes
1answer
253 views
Rails moving from 2.2.2 to 2.3.8 - rake not loading the environment same as the console or my app
I have an app that has been around a while that I'm migrating for
Rails 2.3.8. There have been a lot of interesting issues, but I'm on
the home stretch, but have now run into some very odd errors.
...
1
vote
2answers
712 views
Calling Mixpanel API only in production Rails environment
I am currently using mixpanel with the default 'mixpanel' gem for analytics and have some calls set up in my controllers. I would like those calls to only run in the production environment. Is the ...
0
votes
1answer
100 views
Is ActiveRecord an overkill for storing a password to vendor site?
Consider this scenario. We have an internal Rails 2 app that connects to a vendor site using Savon ( Ruby SOAP library). The connection relies on authentication using a username and password. Password ...
1
vote
1answer
580 views
Bundler not loading gems for script/console in custom environment
I have a Rails 2.3 application with a custom staging environment I created by putting a staging.rb file in environments/. My staging environment is configured to start the application using that ...
2
votes
2answers
549 views
Rails helper method that works differently in different environments
In a Ruby on Rails application, I have a controller where I'd like some functionality to conditionally run, where the condition is dependent on the environment the application is running in. As a ...
0
votes
2answers
630 views
Rails.env undefined in Rails 2
I have an older application running Ruby on Rails 2.2, and I'm having trouble getting a gem to work because it can't find the current environment with Rails.env:
$ script/console
>> Rails.env
...
3
votes
2answers
643 views
Rails: Redirect all outgoing emails to single address for testing
In Ruby on Rails, I'm in a situation where I'd like my application (in a particular testing environment) to intercept all outgoing emails generated by the application and instead send them to a ...
2
votes
4answers
817 views
Slow loading rails environment
Is it OK that loading my rails environment takes 25 seconds?
alhafoudh@xxx:~/Projects/xxx$ time ruby -r./config/environment.rb -e ""
real 0m25.320s
user 0m22.093s
sys 0m1.988s
...
1
vote
1answer
136 views
What is the “best practices” approach to setting up custom global email defaults in Rails?
I'm starting a new Rails 3 app from scratch.
And as I was going through basic setup ( configuring gems, sessions, etc) I ran into something that has been nagging me for a while.
Our current system ( ...
8
votes
3answers
5k views
How do I switch to older versions of the ruby/rails environment?
I'm trying to keep along with the Tekpub Build your own blog on rails screencast. I'm still very much a ruby novice and the problem is that I have Rails 3 installed while Rob uses an older version ...
1
vote
1answer
300 views
Need help with my rails 3 environment
pulled down a repo from git. For some reason I need to do
./script/rails.rb s
where on the rails 3 ap I started on my box, I can just do the
rails server
can anyone help me set up my ...
9
votes
2answers
7k views
Rails 3 - set environment
I have a rails 3 app (which I upgraded). It runs on passenger and nginx but on my production server it also starts with the environment set to 'production'. I know I am missing something really basic, ...
1
vote
1answer
2k views
Where do the Rails 3 environmental variables belong?
I'm relatively new to Ruby on Rails 3 and hope to integrate Ambethia's Recaptcha plugin into my app.
In following what looks like Rails 2 documentation, it's asked to place the following into ...
0
votes
1answer
681 views
How to change default path for images to look for
By default, rails is looking for images to "public/images" folder.
But it is not suiteable for me, since i have all the multimedia stuff in "public/data/:model/:id" folders.
How do i force rails to ...
1
vote
1answer
278 views
Syntax for loading observers (in a model subdirectory) in environment.rb?
I have a lot of model observers, so I want to organize them in a subdirectory under the model folder.
model --> observer --> user_observer.rb, activity_observer.rb, etc.
Prior to placing in ...
3
votes
1answer
338 views
Where do you extend classes in your rails application?
Just about to extend the Array class with the following extension:
class Array
def shuffle!
size.downto(1) { |n| push delete_at(rand(n)) }
self
end
end
However, I was wondering where a ...

