Hot answers tagged ruby-on-rails-3
4
There are a number of questions hidden in your question, so here are some answers:
Article is a class (note, it is singular), that provides class methods to operate on Article data. These class methods could be: Article.new, Article.find (the methods are defined by ActiveRecord). You also can define your own class methods, such as Article.search, which ...
3
Try:
@max_price_item_of_each_customer = []
@categories.each do |value|
@max_price_item_of_each_customer += Item.find(:all, :conditions => ["customer_id IN (?) AND category_id = ? AND sub-category_id in (?)", @customer, value.id, @sub-categories.map(&:id)], :order => 'price DESC', :limit => 3)
end
3
Try this:
class Award < ActiveRecord::Base
belongs_to :nominator, :class_name => 'Employee', :foreign_key => 'nominator_id'
belongs_to :nominee, :class_name => 'Employee', :foreign_key => 'nominee_id'
validates :nominator_id, :nominee_id, :award_description, :presence => true
validate :cant_nominate_self
def ...
2
I suggest you read the RoR Guide on Routing first, especially the section on nested resources.
Your routes in routes.rb probably look something like this:
resources :accounts
resources :invoices
The aforementioned guide will teach you that you should define the routes like this instead:
resources :accounts do
resources :invoices
end
which will give ...
2
This is one way you could do it in PostgreSQL, I'll have to leave the mapping to RoR to someone else :)
WITH cte AS ( SELECT id FROM Table1 WHERE key='acc' LIMIT 1 )
SELECT COUNT(Table1.id)
FROM Table1 JOIN cte ON Table1.id <= cte.id;
An SQLfiddle to test with.
If you have duplicate keys, you may want to order the cte SELECT by id to ...
2
params.first will definitely not work, because you are dealing with a Hash and not with an Array as it seems. Therefore params.first will return ["utf8", "✓"].
Secondly, using each on a Hash will assign an Array to tea, containing a key and a value from the Hash. Consider:
teams = params['match']['teams_attributes']
teams.each do |tea|
p tea
end
# ["0", ...
2
Yes, you'll want to look into background workers. Sidekiq, DelayedJob or Resque are some popular ones.
Here's a great RailsCast demonstrating Sidekiq.
class NotificationWorker
include Sidekiq::Worker
def perform(n_id)
n = N.find(n_id)
ProductNotificationMailer.notify_product(n.email).deliver
end
end
I'm not sure what n was in your ...
2
you need to use scaffold_controller
$ rails g scaffold_controller User
More info about scaffold_controller
Stubs out a scaffolded controller and its views. Pass the model name, either >CamelCased or under_scored, and a list of views as arguments. The controller name is >retrieved as a pluralized version of
the model name.To create a controller ...
2
Swap the order of your two content_fors so the :page_name is defined before the partial is rendered.
index.html.erb
<% content_for :page_name do %>
<p>My Account</p>
<% end %>
<% content_for :page_header do %>
<%= render :partial => "/shared/employer_header" %>
<% end %>
2
There are five ways to do that:
Method 1: By parameters
You mentioned this. I never think of this as it's too troublesome. Anyway it's still a solution for very simple case.
Method 2: By cookie
Save the settings to a cookie and read the cookie in controller to arrange layout settings.
Method 3: By LocalStorage
Similar to cookie but allows more space.
...
2
Could be a discrepancy in default_content_type between your environment configurations. Try adding:
config.action_mailer.default_content_type = 'text/html'
To either your production.rb config file, or optionally your application.rb config file.
You should also check if a text template exists at app/views/digest_mailer/weekly_digest.text.erb and remove ...
2
Redirection for this kind of issue is a bad idea. Try responsive design. I would start with twitter bootstrap. This will give you a scaffold system to start with that will adjust to different screen sizes.
Also this is not uniquely a ruby on rails issue. This is a UI design issue.
Here's some good ideas.
Dont duplicate your views. it will just be ...
1
The to_csv is a class method. Meaning its meant to be called like Group.to_csv. You might want to change the method signature to something like Group.to_csv(groups) instead.
def self.to_csv(groups)
Rails.logger.info "Hello World"
CSV.generate do |csv|
csv << column_names
groups.each do |product|
csv << ...
1
$.ajax({url: '<%= url_for :controller => 'application', :action => 'set_themes()', :id => 'this.value' %>',
Your use of quotes here is wrong. Enclose <%= %> with double quotes instead of single quotes.
It should be @themes = params[:id] based on what you are trying to do in application.js.
To route to application#set_themes:
...
1
The simplest form of usage would be something like this - firstly you need a route that your form can submit to:
# in your routes.rb
match "/admin_pages/my_action" => "admin_pages#my_action", as: "my_admin_pages_action"
This will route a request to "/admin_pages/my_action" to the "my_action" action in your AdminPagesController. It also gives you ...
1
To get a user's groups:
some_user = User.find(some_id)
some_user.groups
To get the microposts, you could do:
some_user.groups.each do |group|
puts group
puts group.microposts
end
However, this would cause a separate query to be generated to collect the microposts of each group. This can be fixed by eager-loading the microposts using includes:
...
1
Opt 1 - Extend Self
If you want to have all of your instance methods as class methods as well, you can simply use extend self
class A
def foo
...
end
def bar
...
end
extend self
end
This would allow you to call foo as either A.foo or A.new.foo.
Opt 2 - Included Module
If you only want some of your instance methods to be available ...
1
ActiveRecord Timestamp columns (like created_at and updated_at) are loaded as the type ActiveSupport::TimeWithZone, while Time.now produces a Time. These classes have different default to_s formats, which accounts for your discrepancy.
As you guessed, both the Z and the +0000 relate to the timezone of the datetime. Your created at value is being expressed ...
1
ERB passes through text and performs operations or writes out text based on ruby code it sees inside certain escape sequences. You have two escape sequences that ERB will process:
<% job = JSON.parse(data) %>
var new_job = "HELLO <%= job.id %>";
data is not being defined in ERB / ruby scope, which is why you are seeing the above error. It ...
1
You need to indent out your coffeescript calls. Coffeescript's block syntax is controlled by indentation.
$(document).ready ->
$(".angefragte_stunden").on "click", ->
$(this).val(0)
is equivalent to js
$(document).ready(function(){})
$(".angefragte_stunden").on("click", function(){})
$(this).val(0);
you want
$(document).ready ->
...
1
This line:
belongs_to :employers
Should be singulars:
belongs_to :employer
With this association you not need nested form you can use select for pick employer for each job.
But if you need many employers for each job and each job can have many employers see this screencast
1
This happens because your job has no employers.
Change your code to this:
def new
@job = Job.new
@job.employer = @job.build_employer
end
In your job.rb change:
attr_accessible :title, :location, :employer_attributes,
belongs_to :employer
accepts_nested_attributes_for :employer
1
You can use a new button with a parameter:
<%= f.submit %>
<%= f.submit "Preview", :name => 'preview' %>
and in your controller, in create action:
if params[:preview]
@product = Product.new(params[:product])
render 'products/previw'
else
# save your object
end
and create a new partial for preview.
1
If you want to do client-side confirmation, you need to use JavaScript to listen on the 'form submit' event. You then use jQuery html() to show a lightbox that asks to proceed or not. It would be related to using onsubmit event and rendering a confirmation box. Another way with data attributes is discussed here
If you want a database tracking for ...
1
Because your one has a nested Hash,inside teams. Look below:
teams.each {|h| p h}
#=>["0", {"name"=>"Navi", "id"=>"1"}]
#=>["1369038961631", {"name"=>"A team", "id"=>"2"}]
Do as below:
teams.each_value.map{|v| v['id']} #=> ["1", "2"]
1
If you're using some kind of background worker to perform your API calls, you could reschedule the task to be reperformed in the next time slot, when the rate limits have been reset.
class TwitterWorker
include Sidekiq::Worker
def perform(status_id)
status = Twitter.status(status_id)
# ...
rescue Twitter::Error::TooManyRequests
# ...
1
ActiveRecord doesn't do that. Mostly because of the fact that this is not a classical approach for RDBM systems. The problem is that you could really only see all interests for one or more questions and that would immediately involve two queries, because you can't join or includes. Additionally, you can't run (db) queries that depend on the relationship ...
1
Can you switch to JSON within the textarea so that parsing it isn't so dangerous. Because what you would have to do is eval the respective params entry in a controller or the model which enables users to do whatever they want with the user under which your app is running. With JSON, you could just use JSON.parse before setting the model attribute.
1
Your definition of the set_themes method requires that the helper method be passed exactly one argument, but in this line:
<%= stylesheet_link_tag set_themes %>
you appear to be invoking it without any arguments (i.e., it is equivalent to calling set_themes()). You should change the call to set_themes in the line above to something else which has ...
Only top voted, non community-wiki answers of a minimum length are eligible



