Tagged Questions
0
votes
0answers
10 views
Rails: How to load a thread on startup
I am working with a UDP server in rails and I have the server called from my config/initializers folder.
If I run the code thread_a=Thread.new{UDPserver()} then the the code works fine however the ...
1
vote
3answers
60 views
Git More than one value for the key user.name/email
Problem 1.
when I run the command
$ git config --global user.name
# or
$ git config --global user.email
I get the following error message:
error: More than one value for the key user.name/email
...
3
votes
1answer
66 views
Managing configuration files across multiple servers
Running a Rails application on multiple servers (~20), I want to able to manage the configurartion files (mainly *.yml, but also SSL pem/certs files and other text based) from a single location such ...
0
votes
0answers
36 views
Uploading files to another server (S3) in a rails application
How can I change where my rails application is storing my uploaded images? There is a _form that does this as part of a model. I want to save them in Amazon S3, but unsure how to make sure the images ...
0
votes
0answers
47 views
Can't configure postgres on local machine to work with rails application
I have an existing rails application. My database and application seem to work fine on the remote database (I made changes on my local machine but am still connected to the remote database), but I ...
0
votes
3answers
39 views
Confusion and Issue in the Database access in Rails app pushed on heroku
development:
adapter: postgresql
host: localhost
database: myapp
pool: 5
timeout: 5000
username: postgres
password: postgres
port: 5432
test: &test
adapter: postgresql
host: ...
0
votes
1answer
36 views
RoR - Not loading or requesting -any- assets in development mode
I'm brand new to Rails development and in a bit of a mess! I've been given a codebase and none of the assets aren't being referenced in the HTML. No failed network requests, they simply aren't being ...
0
votes
1answer
33 views
RVM 1.0.1 installation & dependencies
I have developed a web app in Ruby on Rails using RVM 1.0.1, Ruby 1.8.7 and Rails 3.0.3. For new installations, we were getting RVM 1.0.1 from http://rvm.beginrescueend.com/releases/rvm-1.0.1.tar.gz
...
0
votes
1answer
49 views
Configure Ruby on Rails to generate .js not js.coffee [duplicate]
Is there a way to configure ruby on rails to generate .js files and not .js.coffee when generating a new controller. I don't want to use CoffeeScript, and it's annoying having to refactor all my ...
-3
votes
1answer
84 views
Rails doesn't reconize application.html.haml
Versions> ruby 1.9.2p290 , Rails 3.1.0 , Ubuntu 12.04
My RoR app doesn't detect application.html.halm . So the HTML tags are not being interpreted and de CSS and other common files aren't being ...
0
votes
1answer
29 views
Require presence of ENV VAR on Rails app start
Gems such as Figaro and services such as Heroku allow run time Rails app configuration using environmental variables.
How can I validate the presence of an env var is required for the app, and fail ...
0
votes
1answer
182 views
Nginx + configuration error
I've been trying to config a vh file but I end up in this error:
I have this config file scraped from unicorns github site.
# This is example contains the bare mininum to get nginx going with
# ...
0
votes
0answers
25 views
Rails app failing for ssl configuration reason
I installed gitorious on my local, everything went fine untill I got this message when trying to access the login page, I got this message
SSL received a record that exceeded the maximum permissible ...
1
vote
1answer
131 views
Ruby on Rails - Sunspot Solr search configuration
I configured a Sunspot/Solr in my Ruby on Rails project and it's working fine.
Thus, it's response time is great, it's finding records quickly.
But I've two questions/problems which I can't find ...
0
votes
0answers
25 views
Unable to configure apache2 setting to work with myproject as well as with phpmyadmin
I created an app in rails, and deployed it using capistrano. My /etc/apache2/sites-enabled/000-default file looks like:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot ...
2
votes
1answer
195 views
How to create thread at Rails startup?
I'm trying to create a thread at Rails startup which will run throughout the lifetime of the app. The strange thing is, I already had this working with another thread I was running. I copied that ...
1
vote
2answers
63 views
Allow user to configure Rails application for first use (ActiveRecord etc)
Before I start the process of building something from scratch I was curious if anyone else had come across a way of providing a first-time configuration wizard for a Rails application that allows the ...
1
vote
1answer
156 views
How to test my production config locally when it uses redistogo on Heroku
I have /config/initializers/redis.rb:
if Rails.env == "development"
$redis = Redis.new(:host => 'localhost', :port => 6379)
elsif Rails.env == "test"
$redis = Redis.new(:host => ...
0
votes
0answers
39 views
Rails production log not honoring “log_level”
In my config/environments/production.rb I have set log_level to error
config.log_level = :error
but the log is very verbose with all kinds of non error messages. Can it be that this ...
2
votes
1answer
35 views
How to know what config contains in rails
Is there a way to know what is the configuration defined in development.rb and production.rb?
there is a lot of mystery into what is set.
Is there a way to see that?
5
votes
1answer
1k views
How to use foreman to export to upstart?
I am trying to export my application to another process management format/system (specifically, upstart). In doing so, I have come across a number of roadblocks, mostly due to lacking documentation.
...
0
votes
1answer
82 views
Bundle install gives errors on many gems
when i try to run a bundle install on a catarse project on my VPS, many of the gems needed for this project returns errors and i can't install (i'm using: ruby 1.9.2p320).
for example the gems thats ...
0
votes
0answers
73 views
Application specific environment on the same server in Nginx/Passenger
I have two Rails applications (say app1 and app2) deployed using Nginx/Passenger. The server definition in nginx.conf looks like this:
server {
rails_env demo;
client_max_body_size ...
0
votes
2answers
98 views
How to set up YAML file for environment-specific configuration settings
Currently, I have a session login method that has environment-specific configurations.
def log_in(user)
cookies.permanent[:remember_token] = { :value => user.remember_token, :domain => :all }
...
0
votes
0answers
104 views
configuration ruby in rail application on apache2 server
i need some help with configuration about a ruby on rails application that runs on an apache2 server.
The server machine have only 512 Mb RAM Memory and the OS is Ubuntu 10.04.
The software system is ...
0
votes
2answers
282 views
Ruby on Rails YAML configuration design
Sorry for being annoing last time. I'm developing my Ruby on Rails application, and I would like to know a few things about YAML configuration as a storage file!
I have a lot of static preferences ...
0
votes
0answers
187 views
Including Rails configuration in my cucumber env.rb
I'd like to access Rails.config inside my cucumber env.rb file, as my configuration specifies a temporary directory that I want to clean before I run my tests. How can I access Rails.config inside my ...
1
vote
1answer
713 views
Nginx + Thin config on Windows for Rails app
I'm somewhat confused about using Nginx and Thin for serving my Rails 3.2 app. Previously I had Thin serving my Rails app on Windows Server 2008 R2 without any issues. I would start Thin on the ...
0
votes
0answers
67 views
Creating admin panel in rails - edit things like site name and about us text
I'm creating a simple e-commerce solution in rails. For my needs, I would like the user to be able to set and edit things like the store name, tagline, business hours, phone, address, email, and about ...
0
votes
1answer
68 views
How to access assets during development if precompiling for development
I recently deployed a first iteration of a project to Heroku. Because I precompiled, all of my assets used during development are now in the public/assets and public/system folders.
I am aware of two ...
0
votes
1answer
75 views
Creating controller based generic routing in Rails
I have a super basic Rails app with a couple of forms. I have 5 controllers, and each of them have only 1 index view, and possibly more in the future. What I want to achieve is, that when I type in ...
0
votes
2answers
74 views
I modified /config/environments/development.rb, do I need to restart Apache?
In Ruby on Rails, I need to change SMTP settings in /config/environments/development.rb.
After making the changes is it required to restart apache or any ather service?
Actually the mail is not ...
3
votes
1answer
81 views
How can I set the value of 'config.action_mailer.default_url_options' with domain.name?
I have to setup this for my devise usage.
But my app allows users to access through 2 domains.
I wanna set 'config.action_mailer.default_url_options = { :host =>' with the domain that users are ...
0
votes
1answer
58 views
Disable query logging in Rails 3.0.x, but allowing debug information
I have a web application that generates loads of SQL queries, and it becomes difficult to read the log file. I would like to know if it is possible to disable the logging of these SQL queries in ...
2
votes
2answers
515 views
Managing config in 12-factor applications
I've enjoyed using Rails on Heroku, and like that I can adjust the configuration property of a Heroku app without having to commit a change to xyz.yml and redeploy.
It would be nice to completely do ...
0
votes
0answers
256 views
Rails Sendmail Production Server configuration Issue
I am trying to use actionmailer with sendmail but I don't know why it isn't working.
This is the error I got from production.log
Sent mail to hackerkiba@gmail.com (19ms)
Completed 500 ...
0
votes
1answer
105 views
Configure domain name outside the source control
I have a Rails application which I now plan to deploy many instances to different domains. Originally I only intend for it to be on one domain.
I realize that for each domain, I have to replace all ...
0
votes
0answers
107 views
Ruby conversion gem errors with production on Rails
I've tried using both the ruby units https://github.com/olbrich/ruby-units and alchemist https://github.com/halogenandtoast/alchemist gems in my app for conversions. Everything works perfect locally, ...
0
votes
1answer
297 views
CoffeeScript not updating in Rails 3.1
I am working on a Rails 3.1 app that makes use of CoffeeScript. As a new Rails developer, I have been making changes to some configuration to try to make the most of the asset pipeline and Heroku.
...
0
votes
2answers
189 views
Rails: Obtain root_url in environments file
Helper methods in rails automatically detect the root url of the application. For example, user_signup_url automatically uses mydoimain.com/user_signup
However, in my environments/production.rb, I ...
1
vote
1answer
410 views
RubyGem Environment incorrect (gem env)
So I'm following a book and installed GIT, CURL, rvm, RubyGems, and ruby.
When I run gem env, the variables incorrect... my home is "/home/wegener" NOT "/home/wegejos" ... I have no clue where or how ...
1
vote
2answers
200 views
Rails config variables aren't found during initialization
I have a file config/initializers/secrets.rb containing the following:
Rails.configuration.smtp_domain = "derp.com"
Rails.configuration.smtp_password = "derpderp"
Rails.configuration.smtp_user = ...
1
vote
2answers
206 views
How do I get my rails controller to work with a subdomain through Passenger?
So this works for me in development mode, but when I attempt to deploy my rails app using passenger, my controller doesn't seem to be called.
I have set up a cname record for API to www.example.com. ...
0
votes
2answers
243 views
I'm having trouble running my Rails web server
I have installed ruby193 and I've installed rails via the command prompt (I also installed a DevKit). However, whenever I try the command:
rails server
I get this error:
←[31mCould not find gem ...
0
votes
1answer
2k views
I'm having trouble installing missing gems in Rails
I'm having problems starting my Rails web server. I try to enter "rails server" in the cmd prompt but I get the following error:
C:\Ruby193\demo>rails server
←[31mCould not find gem 'jquery-rails ...
-1
votes
3answers
120 views
I can't run my Rails web server
I have installed ruby193 and I've installed rails via the command prompt. However, whenever I try the command:
ruby script/server
I get this error:
ruby: No such file or directory -- script/server ...
1
vote
1answer
160 views
how to check the database name that ActiveRecord uses
In database.yml you define all the settings. How can I access those settings from ruby? I've looked in App::Application::config, but can't find it there. Also, I remember people were able to configure ...
0
votes
1answer
393 views
Using config.gem causes an error on RoR application start
I'm trying to use newrelic in my project. I've installed newrelic gem successfully and the next step was adding config.gem "newrelic_rpm" to environment.rb
When I use config.gem in environment.rb I'm ...
1
vote
1answer
642 views
Rails 3.0, ActionMailer delivery not working, no error message displayed
I'd like to play around with sending mail from Rails in a development environment. My message is getting rendered (I can see it in the terminal I'm running rails console in).
In config/development.rb ...
3
votes
1answer
148 views
What is best practice for handling application configuration?
I'll phrase the question in the context of my application but I think it does have a wider scope generally for configuration. My application allows companies to track absences and holidays for its ...




