similar to: Anyone here joined NaNWriMo?

Displaying 20 results from an estimated 60000 matches similar to: "Anyone here joined NaNWriMo?"

2010 Feb 24
4
"Sequence does not exist" for joined model
Hello all, I''m in my 5th month on Ruby on Rails and still learning. I have an application that works fine in sqlite3 and then the boss says he wants it migrated to Oracle. Now, I know very little about Oracle, enough to get into trouble. When I did the migration everything went haywire. Well, I''ve refactored several problems and now I have another. I have two models with a
2013 Sep 06
2
Is there anyone using gem milia (multitenancy)?
I''m looking for examples of how to use the gem and especially the process of sign-up commented at gem github. Thanks Ricardo. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to
2010 Apr 21
3
Anyone else notice that http://api.rubyonrails.org has been hijacked?
??? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at
2010 Feb 11
6
Anyone know of a Rails POS (point-of-sale) app?
Open-source or commercial. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit
2011 Sep 09
1
i need help.please anyone can help me out witth this.
I installed ruby on my pc...then after that i got lib not found as one error when i was installing rails... further all steps worked like installing sqlite3 and creating test application...but wen i gave a cmd called rake db:migrate, i got errors like these- rake aborted! No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb) D:/Ruby192/lib/ruby/1.9.1/rake.rb:2367:in
2010 Dec 29
1
activeldap anyone using?
Someone use activeldap? I''ve installad the gem but it seems to me that tha latest activeldap version require rails 2.3.8. I use rails 3.0.3 and don''t want to install version 2.3.8. Is activeldap a old gem? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2010 Jul 09
6
deployment question: has anyone deployed w. sqlite?
Hi, I''d like to make a demo version of my app available, but I''m not ready to get into database stuff, yet. Has anyone ever deployed with sqlite (what I used to develop my app)? If so, what hosting service(s) would you recommend? Thanks, Lille -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this
2011 Jan 17
3
Rails 3: Using local timezone on DB
I''m in the process of upgrading my existing Rails 2.3.8 app to Rails 3.0.3. One problem that I have encountered is how to make rails 3 read/write date/time data into the DB in localtime. In Rails 2.3.8, commenting out the ActiveRecord timezone settings did the trick, however in Rails 3, that doesn''t work as the default is now UTC. I have tried setting the config.time_zone to
2011 Sep 01
2
Custom ActiveRecord Error Message
I''m generating 3 models on 1 controller and i''m rescuing ActiveRecord::RecordInvalid for validation errors, however 2 of the models have the same attribute called "name", and if there''s an error on that field, I wouldn''t know whether that belongs to model A or model B. What then is the best way of modifying the error message of a validation error
2010 Mar 19
3
Ruby on Rails tutorials for beginners are available here
Hello Everyone, I have started my blog at http://railsguru.org. Besides other stuff on Rails, the main focus of the site will be to help beginners to learn Ruby and Rails and build the fundamentals. Regards, Pankaj Bhageria, Tech Lead, Sumeru Software Solutions. http://www.railsguru.org http://www.sumeru.com -- You received this message because you are subscribed to the Google Groups
2010 Feb 27
2
Paperclip upload fails sometimes
Hello, My application is a rails-postgresql application which uses paperclip ("ImageMagick-6.5.4-10-Q16-windows-dll.exe" installed on WinXP). The application''s image uploading feature works consistently right on my development PC, however it is inconsistent on a different server PC (used for deployment). There are certain observations below. a) For the first time the file
2010 Feb 10
16
nil object - can anyone help?
Hi there, I''ve been looking for a while now and can''t seem to find where I''m going wrong.. I''m following a railscast tutorial to send invites out to people. there''s n invitation.rb page: class Invitation < ActiveRecord::Base #attr_accessible :sender_id, :recipient_email, :token, :sent_at belongs_to :sender, :class_name =>
2012 Jan 08
1
Advanced has_many and belongs_to model joins ?
Hi, I''m having major trouble with a somewhat self-referencing has_many and belongs_to set of models. item.manufacturer correctly returns an object of type Vendor. However, item.manufacturer.name raises an exception even though the name value is set correctly. I''ve been debugging and googling and responding to stack overflow peeps but still to no avail. Complete details here:
2011 Sep 05
8
In Rails 3.1 Model.count() ignores :include - no outer join in generated SQL
Hello! Just upgraded to Rails 3.1, ran my test and found this issue: class Trade < ActiveRecord::Base has_many :transaction_trades ..... def Trade.do_something stale_trades = Trade.count(''transaction_trades.id'', :include => :transaction_trades, :group => ''trades.id'')
2013 May 14
5
Why joins queries make result readonly?
Are there any rationalies to make queries obtained by joining scope to be readonly? I read some old posts (pre-rails3) that joins adds additional columns to record so that ActiveRecord doesn''t know how to update that fields, but actually I don''t see that fields. For example I write model class Order < ActiveRecord::Base has_and_belongs_to_many :executors, class_name:
2010 Jan 15
1
Chaining queries in ActiveRecord
Hi all, Stuck at this problem for several days. Tried to use named_scope, scope_out, and plugin such as searchlogic, but no result. The problem is as follows: I have a pic table and tag table, and a join table called pic_tag (with only pic_id and tag_id) so that I can associate N pics to M tags. This is the tutorial way to set up a many- to-many association. I''m trying to implement a
2011 Aug 26
2
Prevent Infinite loop in Self-Join Association
Hi, I have such a data base which has a self-join as association. I want to know that is there any good gem available which i can use for self-join in my application? My main intension is to prevent infinite loop in searching the records. @Anand -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email
2013 Apr 24
3
join table naming
Hi, I’m an amateur learning rails and could use some help… I created a join table “pictures_questions” and append to it in the following way: @picture = Picture.new(params[:picture]) … if @picture.save @question.pictures << @picture Everything works fine but honestly I think I got this working by sheer luck and trial and error. I have 2 questions: 1. I do not understand the
2011 Aug 12
1
Getting nil value when setting an on Join model via a has_many :through relationship
Hi All, I''ve been trying to figure out what''s wrong here for a little over a day and figured i''d reach out to the ROR list. A pastie explains the code a bit better than directly in email: http://pastie.org/private/mvu0zr1xm18bsk6nfbyama Basically i have an Artist, and he has many Songs through a join model called Releases. An artist can be "featured" on a
2012 Sep 02
1
回复: Which Framework will improve my Ruby Skills?
i think you should write more program . so that you can improve you ruby skills ------------------ 原始邮件 ------------------ 发件人: "ANIKET KADAM"; 发送时间: 2012年9月2日(星期天) 晚上9:52 收件人: "rubyonrails-talk"; 主题: Re: [Rails] Which Framework will improve my Ruby Skills? can you tell me which rubygems will improve my ruby skills On Sun, Sep 2, 2012 at 2:00 PM, ANIKET KADAM