0
votes
1answer
99 views

What tool runs during a “cd” and checks the .ruby_version file?

I've installed a bunch of tools related to ruby recently. Macports ruby19 (then uninstalled per advice here on SO), then installed RVM and ruby-1.9.3-p. And now, I notice that I get a message when ...
0
votes
1answer
192 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 ...
3
votes
3answers
531 views

Setting environment variables with puppet

I'm trying to work out the best way to set some environment variables with puppet. I could use exec and just do export VAR=blah. However, that would only last for the current session. I also thought ...
1
vote
1answer
58 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
1answer
90 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 ...
0
votes
1answer
98 views

irb does not work after rbenv install

So I just ditched rvm in order to try rbenv. I installed with macports and followed the instructions regarding installation. However when I try to run irb I get: ...
-1
votes
2answers
212 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 ...
2
votes
3answers
139 views

Ruby, which exception is best to to handle unset environment variables?

The script I wrote runs at start up and requires that an environment variable be set, but which of Ruby's Exceptions, is best? I used LoadError, I just want to be as descriptive as possible and follow ...
1
vote
1answer
33 views

how to set a ruby application to run on multiple environments

I have developed a simple ruby application without any MVC, and runs on command prompt using ruby 1.9.2 . It also has a Gemfile. I want this application to run on machines running ruby 1.8.7 and 1.9.3 ...
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 ...
7
votes
5answers
898 views

Shell out from ruby while setting an environment variable

I need to shell out to a process while setting an environment variable for it. I tried this one-liner: system "RBENV_VERSION=system ruby extconf.rb" This syntax works in shell script but not from ...
1
vote
1answer
121 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 ...
2
votes
1answer
2k views

Sinatra and environment.rb

I'm developing a Sinatra-based application and have seen some apps using an environment.rb file in the root of the app with code placed within a configure block. See examples at: ...
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
81 views

Simple way to install Ruby with gems on a customer site

What's the simplest way -- ideally a single click -- to set up a ruby (not rails) runtime environment on a local Windows system (not a web site), with specific gems? I have code for a customer that ...
6
votes
1answer
2k views

Run a command line with custom environment

In Ruby, I want to be able to: run a command line (via shell) capture both stdout and stderr (preferably as single stream) without using >2&1 (which fails for some commands here) run with ...
6
votes
2answers
2k views

Ruby, Unicorn, and environment variables

While playing with Heroku, I found their approach of using environment variables for server-local configuration brilliant. Now, while setting up an application server of my own, I find myself ...
1
vote
1answer
611 views

How to create a config file for multiple environments in Ruby?

I don't want to confuse you so what I want to do is the following: I have three environments: www.env1.com www.env2.com www.env3.com I want to create something to define the setup phase according ...
0
votes
1answer
652 views

Ruby gems fail to load in script, but load fine in irb

I'm having trouble loading any gems at all via a saved script, but everything seems to work fine in irb: $ irb irb(main):001:0> require 'nokogiri' => true irb(main):002:0> exit $ cat test.rb ...
2
votes
2answers
546 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 ...
2
votes
4answers
816 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 ...
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, ...
3
votes
2answers
322 views

How can I determine if my process is being run interactively?

Is there a standard(ish) POSIX way of determining if my process (I’m writing this as a Ruby script right now; but I’m curious for multiple environments, including Node.js and ISO C command-line ...
0
votes
3answers
127 views

How to get data to a running ruby process?

I have a datastore with a cache and a db, simple. The tricksy part is that I want a way to control if the the datastore hits the db in a real-time way. That is to say while the process is running I ...
3
votes
1answer
334 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 ...
0
votes
1answer
606 views

Rails test across multiple environments

Is there some way to change Rails environments mid-way through a test? Or, alternately, what would be the right way to set up a test suite that can start up Rails in one environment, run the first ...
2
votes
2answers
571 views

How can my Rails app accept RAILS_GEM_VERSION minor version bumps

My rails project has this line in /config/environment.rb # Specifies gem version of Rails to use when vendor/rails is not present RAILS_GEM_VERSION = '2.3.2' unless defined? RAILS_GEM_VERSION As we ...
1
vote
3answers
2k views

How to specify rubygems path in environment-less Ruby script?

I've written a data collection script for Cacti in Ruby and it runs fine from the command line but Cacti runs the script via "env -i" which strips the environment so Ruby can't find the rubygems ...
2
votes
4answers
4k views

Source shell script into environment within a ruby script

If I'm writing a shell script and I want to "source" some external (c-)shell scripts to set up my environment, I can just make calls like this: source /file/I/want/to/source.csh I want to replace a ...
2
votes
2answers
2k views

Use Ruby to permanently (ie, in the registry) set environment variables?

On Windows, how can I use Ruby to permanently set an environment variable? I know I need to change the registry (through the win32ole module?) but I am a novice with regard to scripting the registry. ...
1
vote
1answer
5k views

Rails not loading environment.rb correctly

I recently upgraded my application from Rails version 2.1.2 to version 2.2.2. It was tested in on development and on my staging system. When I moved to production it fails to load all the way through ...
3
votes
2answers
190 views

ActiveRecord running different queries in production?

I have a class hierarchy looks like this: class Post < ActiveRecord::Base; end class Project < Post; end class ProjectDesignWall < Project; end There's a controller that fetches data like ...
0
votes
2answers
1k views

Rails: filter defined in lib file required in environment.rb disappears from filter_chain in production environment. Why?

In my rails application, I have a file in lib that, among other things, sets up a filter that runs on all controllers. When running under development environment, everything runs fine. However, ...
56
votes
7answers
18k views

Best way to create custom config options for my Rails app?

I need to create one config option for my Rails application. It can be the same for all environments. I found that if I set it in environment.rb, it's available in my views, which is exactly what I ...
35
votes
3answers
11k views

Can you get DB username, pw, database name in Rails?

I'm writing a rake task that does some DB work outside of Rails/ActiveRecord. Is there a way to get the DB connection info (host, username, password, DB name) for the current environment as defined ...
5
votes
3answers
1k views

RoR environment in Ruby standalone script

I want to run a standalone ruby script in which I need my RoR environment to be used. Specifically, I need my models extending ActionMailer and ActiveRecord. I also need to read the database ...