Re: [Rails] How to install Node.js?

2014-03-19 Thread mike2r
On Wednesday, March 19, 2014 2:54:43 PM UTC-4, Orlando Hernandez wrote: > > sudo add-apt-repository ppa:chris-lea/node.js > sudo apt-get update > sudo apt-get install nodejs > :) > 2014-03-19 13:40 GMT-05:00 Walter Lee Davis > >: > >> I've gotten bitten by the name, too. Look for a package call

Re: [Rails] How to install Node.js?

2014-03-19 Thread mike2r
On Wednesday, March 19, 2014 2:54:43 PM UTC-4, Orlando Hernandez wrote: > > sudo add-apt-repository ppa:chris-lea/node.js > sudo apt-get update > sudo apt-get install nodejs > :) > 2014-03-19 13:40 GMT-05:00 Walter Lee Davis > >: > >> I've gotten bitten by the name, too. Look for a package call

Re: [Rails] How to install Node.js?

2014-03-19 Thread Orlando Hernandez
sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get install nodejs :) 2014-03-19 13:40 GMT-05:00 Walter Lee Davis : > I've gotten bitten by the name, too. Look for a package called nodejs, not > node. > > Walter > > On Mar 19, 2014, at 2:00 PM, Scott Ribe wrote: > > > On

[Rails] ActionView::Template::Error: end of file reached Rails 4.0.4

2014-03-19 Thread Fabio Kreusch
I have an application I'm migrating from Rails 3.2 to 4.0. On my CI environment, I'm getting "ActionView::Template::Error: end of file reached" randomly in different controller specs pointing to a view in which I have "javascript_include_tag 'application'". Has anyone seen this before? Relevant

Re: [Rails] How to install Node.js?

2014-03-19 Thread Walter Lee Davis
I've gotten bitten by the name, too. Look for a package called nodejs, not node. Walter On Mar 19, 2014, at 2:00 PM, Scott Ribe wrote: > On Mar 19, 2014, at 11:57 AM, Jaimin Pandya wrote: > >> I am completely new for node.js. By reading tutorials I downloaded >> "node-v0.10.26". >> >> But I d

Re: [Rails] How to install Node.js?

2014-03-19 Thread Leo Wong
Anyway, you can find the instructions here: https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager#ubuntu-mint-elementary-os On Thursday, March 20, 2014 at 1:57 AM, Jaimin Pandya wrote: > I am completely new for node.js. By reading tutorials I downloaded > "node-v0.10.26". >

Re: [Rails] How to install Node.js?

2014-03-19 Thread Scott Ribe
On Mar 19, 2014, at 11:57 AM, Jaimin Pandya wrote: > I am completely new for node.js. By reading tutorials I downloaded > "node-v0.10.26". > > But I don't know how to install it on ubuntu12.04? Perhaps look for a node.js mailing list??? -- Scott Ribe scott_r...@elevated-dev.com http://www.ele

[Rails] How to install Node.js?

2014-03-19 Thread Jaimin Pandya
I am completely new for node.js. By reading tutorials I downloaded "node-v0.10.26". But I don't know how to install it on ubuntu12.04? Kind regards. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" gr

[Rails] Re: JOB POST: why is it so hard to find a Ruby Rails developer for a job in Downtown NYC?

2014-03-19 Thread Martin Streicher
If you are a senior Ruby dev and are looking for remote work, I know of a great job in Atlanta. (I am not a recruiter. I am also a Ruby dev.) Drop me a line and I can make connections. -- Martin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"

[Rails] Re: how to avoid the records that are not in database without reindexing solr

2014-03-19 Thread Frederick Cheung
On Wednesday, March 19, 2014 9:52:43 AM UTC, lavanya ramamoorthy wrote: > list.results > > list.results returns [ ] for page 1 and the remaining 2 records for page 2. > > Ideally it should have been 1 page with 2 records. is it possible to avoid > the records that not in database without re-index

[Rails] [JOBS] I am looking for recommendations for Rails developers to send an RFP to

2014-03-19 Thread Anthony Finta
Hi - I need to find a small team or company that would be interested in receiving an RFP for a new website. The look, feel, and most of the static content is already coming from another vendor (but not the functionality). The data that we would need is in Oracle systems. We have about 5,000 "m

Re: [Rails] String concatetenation.. + vs <

2014-03-19 Thread Rafael Belo
The operator *<<* is better to add info into a variable. For example: name = "" name.object_id => 70341910843080 name << "Jhon " name.object_id => 70341910843080 name << "Doe " name.object_id => 70341910843080 Note that the object_id is always the same. It's not create a new object. *Now, let

Re: [Rails] how to avoid the records that are not in database without reindexing solr

2014-03-19 Thread Walter Lee Davis
You could filter them from the array with #compact*, I think, but ideally, you would want to re-index. That's the problem with any search technique that doesn't hit the live data directly. Yes, solr is much faster and can do way more tricks, but it's not "live". How long does your index process

Re: [Rails] jquery-rails upgrade breaking existing code which depends on older versions of jQuery Core (1.8.2)

2014-03-19 Thread Brandon
So I tried noConflict but it didn't work. http://code.jquery.com/jquery-1.8.2.min.js"; type="text/javascript"> var jq183 = $.noConflict(true); Then inside* jquery.inlineedit.js*: (function($) { // define inlineEdit method $.fn.inlineEdit = function(options) {

[Rails] how to avoid the records that are not in database without reindexing solr

2014-03-19 Thread lavanya ramamoorthy
i have a model Ticket which has 4 records.. I deleted first 2 records in the database.. search = Sunspot.new_search(Ticket) do paginate(:page => 1, :per_page => 2) end list = search.execute list.results list.results returns [ ] for page 1 and the remaining 2 records for page 2. Ideally i