Tagged Questions
0
votes
1answer
12 views
Getting Rspec to Recognize Macros for Capybara's Specials
When adding macros to Rspec's config, you have to specify the type of test it'll be accessed by. For instance, you might type:
config.extend ControllerMacros, :type => :controller
How do you get ...
0
votes
1answer
45 views
Rescue if YAML file doesn't exist or can't load in Rails
I am using a YAML file to store some confidential configuration data. I am just using that file in development environment. In production I am using ENV variables.
Here is what I am doing right now:
...
0
votes
1answer
56 views
How to Specify Font-Size for PDF report Rails
In my Rails app, I am using wkhtmltopdf for PDF generation and the the configuration settings are defined in 'config/initializers/pdfkit_config.rb'. You can see the code below.
PDFKit.configure do ...
0
votes
3answers
368 views
Where is the default index.html.erb file?
I'm following the setup instructions here http://railsinstaller.org/mac and when I get to step 8 where I'm asked to edit the welcome index.html which can be found under ...
0
votes
1answer
62 views
global values not updating when changed in config/initializers/constants.rb in Rails
I am working on a rails project and I am trying to update some of the global arrays used for selection fields in the application. I went into the constants.rb file where all the array definitions ...
1
vote
1answer
276 views
Rails 3.1 set host in test environment
I'm getting http://www.example.com whenever I use root_url in my tests.
It works fine in development, where I have this in config/environments/development.rb:
...
0
votes
1answer
115 views
How can I configure ActionMailer to conditionally send emails in development mode?
I have ActionMailer configured to send emails through gmail in development mode.
config/development.rb
config.action_mailer.default_url_options = { host: ENV["MY_DOMAIN"] }
...
0
votes
1answer
42 views
Resque does not honor application config
I Have been using resque quite comfortably, But for following scenario
In one of my perform method
class A < ActiveRecord::Base
def self.perform
B.something
end
end
class B < ...
0
votes
1answer
491 views
yml file exists but rails server and passenger complains that it doesn't
I've been following the railscast #85 by Ryan Bates at this link regarding YAML config files and I've ran into a problem that I can't find an answer to. I am using Ruby 1.9.3p194 through RVM and Rails ...
1
vote
1answer
522 views
Apache2 Configuration That Allows a Subdomain Point to an Machine:Port
I own the domain, "peterlee.com.cn", and I added an A Record in my domain control panel:
RR Destination IP TTL
rs.peterlee.com.cn 10.50.10.75 1 hour
I have an RoR (Ruby on ...
2
votes
1answer
408 views
Accessing Devise config variables from a view
In my Rails app, what would be the way to access a Devise config variable directly from a view?
I want to show config.allow_unconfirmed_access_for from Devise's :confirmable module. This variable is ...
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 ...
11
votes
2answers
1k views
What does it mean BUNDLE_DISABLE_SHARED_GEMS: '1'?
I found this BUNDLE_DISABLE_SHARED_GEMS: '1', in my .bundle/config. Does anyone know what this means?
2
votes
1answer
578 views
Rails: don't generate helpers
I know this is simple but I don't remember how to do this and wasn't able to find it on Google...
I rarely need a controller-specific helper file, so I would prefer that when I generate a Controller ...
13
votes
2answers
905 views
Explain to me how config works in Rails
I have a Rails 3 application, call it "MyApp". In my config\environments\production.rb file I see such things as
MyApp::Application.configure do
config.log_level = :info
config.logger = ...
0
votes
1answer
435 views
rails running in staging on production machine
I have a machine where all my rails apps are running in a "staging" environment, even the production ones. It is trying to connect to the staging database. I have tried setting it set to production ...
1
vote
1answer
861 views
Rails: Autoloading lib not working
For some reason my autoloader isn't working, i followed some tutorials, here is what my config\application.rb file looks like
require File.expand_path('../boot', __FILE__)
require 'rails/all'
...
5
votes
5answers
512 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 ...
26
votes
2answers
12k views
Rails Console: reload! not reflecting changes in model files? What could be possible reason?
Earlier it was working fine. I have been playing little bit config. So may be i have changed some config unknowingly.
here is config of environment/development.rb
config.cache_classes = false
...
1
vote
1answer
386 views
Passing variables to a JRuby application via Tomcat config
What's the best way to configure variables in a JRuby application that's deployed as a WAR file? The operations group will need to configure database settings and other environment variables depending ...
1
vote
1answer
455 views
Deploying a Rails application on apache
Ive built a small application which interacts with mysql at the backend.When I run on the mongrel server its wrking fine.
I want to run this application on apache server.
The application is a rails ...
0
votes
2answers
421 views
Display column name on view if value present in the column — Ruby on Rails
I have column LTD in my Company model. After retrieving value from model using
Company.find
If any value is present in LTD column, then I have to display the text "Limited" on the view. I have many ...
0
votes
1answer
166 views
One configuration per domain name on the same application. How to easily access config values from models?
I run a Ruby on Rails website that have multiple domain names. I have a "Website" table in the database that stores the configuration values related to each domain name:
Website
- domain
- ...
1
vote
1answer
672 views
Rails dependencies issue when in production mode
Im working on a legacy oracle database with a slightly odd table naming convention where each column name is prefixed with the tables initial letters - eg policy.poli_id.
To make this database easier ...
6
votes
8answers
713 views
What little things do I need to do before deploying a rails application
EDIT
What small things which are too easy to overlook do I need to do before deploying a rails application?
I have set up another question for any task that takes more than a minute or two, and so ...
