search for: valim

Displaying 10 results from an estimated 10 matches for "valim".

Did you mean: valid
2011 Mar 29
18
Rails 3.0.6.rc1
ZOMG HAPPY TUESDAY (UTC-7)!!! <3<3<3<3<3 I am happy to announce that the first release candidate for Rails 3.0.6 has been pushed to rubygems.org. ## Release Candidate: What does it mean? The release candidate is very similar to what we will actually release for version 3.0.6. The reason that we release an RC is so that the community can have a chance to postpone or veto commits
2007 Sep 21
3
multi_score?
...(score) and a ranking in the database (normalized also). this combination can be like that: 0.4*ferret_score+0.6*database_score this database_score is also indexed any idea? and someone know how to access the ferret data in the object returned by find_by_content in aaf? thanks in advance! Jos? Valim. -- Posted via http://www.ruby-forum.com/.
2007 Sep 24
2
ferret fuzzy matches
...with ''showcase'' 5. So I want to tell the user that: Nothing was found with ''show'', didn''t you mean ''showcase''? So, how do i get the ferret matches string, that was ''showcase'' in that scenario? Thanks in advance, Jos? Valim -- Posted via http://www.ruby-forum.com/.
2010 Jun 21
9
[BUG] Segmentation fault
First of all, I use RVM and I installed ruby-1.9.2-head, which I used to create a new rails3 gemset. Then I changed to that gemset with rvm use 1.9.2-head@rails3 and I ran bundle install over the following Gemfile: source ''http://rubygems.org'' gem ''rails'', ''3.0.0.beta4'' gem ''sqlite3-ruby'', :require =>
2011 May 10
1
fitting non-intercept model with lrm
I would appreciate if someone could tell me how to fit a non-intercept model using lrm (and not glm). The -1 in the formula of the glm does not work with lrm. Thanks, Clarissa [[alternative HTML version deleted]]
2006 Feb 17
0
Load Balance/Backup
...not stop. In my mini-lab i have 2 links adsl, 3 ethernet card 2 for links and one for lan my links using DHCP for get configuration. Examples: link 1 : 200.133.144.121 link2 : 200.203.159.162 LAN: 192.168.0.1 Sorry, because im Brazilian student, and my english is bad. Thanks for help, Leandro Valim.
2010 Aug 17
6
Overly aggressive constant unloading of Rails 3.0
In Rails 3.0 (both RC and edge), any constant that''s defined while loading a file in development mode will get unloaded on each request, regardless of whether it comes from an autoload path in the application or from external code such as a gem. Example file (tested on a fresh edge app): # kittens.rb require ''nibbler/json'' # "nibbler" is a gem specified
2012 Jul 05
2
Addition to has_many - a ':source_scope' option
...r the above example, Subscription has a default scope, it is not picked up while calling subscribers through subscriptions. Sounds like a bug for ''has_many through''? Should I go ahead and implement this? Or is there something similar already fixed/planned? Had a word with Jose Valim about this and he said Jon Leighton & Aaron Patterson are working on this feature for Rails 4? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonra...
2009 Oct 31
3
1.9 Compat and merging mail gem into ActionMailer
Hi all of both RoR Core and TMail. You may know me better as the maintainer of TMail. However, TMail has been a bit difficult to get working with Ruby 1.9, so in the light of that, I sat down over the past few months and wrote myself an all encompasing mail gem. Mail passes all of its hundreds of specs equally well in Ruby 1.8.6, 1.8.7 and 1.9.1. Mail reads every email in the TMail test suite
2009 Mar 19
6
[Cucumber 0.2] Failure to use should
I have a step definition like this: Then "the account should be created" do account = Account.find_by_name("my shiny new account") p account.class account.should_not be_blank end When running this step, I got the error message: Account(id: integer, name: string, state: string, next_renewal_at: date, created_at: datetime, updated_at: datetime, full_domain: string,