Re: [Rails] CS Student Looking For a Good Open Source Project to Contribute To

2015-03-31 Thread Robby O'Connor
http://github.com/discourse/discourse --Rob Sent from my cell, please excuse any typos. On Apr 1, 2015 1:58 AM, "Colin Wood" wrote: > So I am about a year from graduating and I know I need some real world > experience under my belt to get into rails development when I'm done. > Anyone have any g

[Rails] issues generating a controller

2015-03-31 Thread Phillip Jarrar
/Users/Feras/.rvm/gems/ruby-2.2.1/gems/debug_inspector-0.0.2/lib/debug_inspector.bundle: [BUG] Segmentation fault at 0x000418 ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-darwin14] -- Crash Report log information See Crash Report

[Rails] CS Student Looking For a Good Open Source Project to Contribute To

2015-03-31 Thread Colin Wood
So I am about a year from graduating and I know I need some real world experience under my belt to get into rails development when I'm done. Anyone have any good open source projects needing help from a newcomer to rails. Im very comfortable with Ruby, jquery, html, HTTP, and Relational Datab

[Rails] [JOB] Ruby on Rails Developer (FT) ONSITE position in NYC!

2015-03-31 Thread Lisa Vella-Alvarado
Seeking an experienced mid or senior level Ruby engineer to join small feature teams and work on all parts of the development cycle, in many different areas of the code, and on constantly releasing features. Development Stack: Ruby and Ruby on Rails, jQuery, Sammy.js, Grunt.js, Git, Postg

Re: [Rails] More elaborate way to make model queries from the URL?

2015-03-31 Thread Fredrik Boström
Thanks Dave. Yes, ORing over values for the same attribute is not a problem, that can be done with something like name=['Doris', 'Bob'] or similar, which would generate an SQL IN statement (where name in ('Bob', 'Doris')). The problem is when ORing two different attributes or arbitrarily mixin

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Krishna Gundala
Thanks a lot Nobert, you made this happen again. Lets ROCK.. :) [image: --] Mohan Krishna Gundala [image: https://]about.me/gmk.india On Tue, Mar 31, 2015 at 8:09 PM, Norbert Melzer wrote: > OK, as promised, I took some notes and pushed them to my

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Norbert Melzer
OK, as promised, I took some notes and pushed them to my fork. Please read them: https://github.com/NobbZ/Lemmy/blob/master/PastPresentFuture.md If you also talked with obatard about some topics regarding this project, or have some ideas about the future feel free to fork and make a PR to that gi

Re: [Rails] We maybe need a quantity validator beside the current validates_length_of?

2015-03-31 Thread Dmitry Shvetsov
at first glance it seems reasonable Sent from my iPhone > On 30 Mar 2015, at 08:43, mmonto...@museways.com wrote: > > I was talking with @sgrif about this in this ticket > https://github.com/rails/rails/issues/19570. > > I think the current validates_length_of is pretty fine expressing thinks

[Rails] Re: Re: Re: Object Service instance

2015-03-31 Thread Jhonnatan Mc
Colin Law wrote in post #1171241: > On 31 March 2015 at 21:32, Jhonnatan Mc wrote: >>> >>> Look at the name of the class (UserService). Now look at the name of >>> the file. Now look again if necessary. Keep looking... >>> >>> Colin >> >> I tried changed the name of el file from UserService to u

Re: [Rails] Re: Re: Object Service instance

2015-03-31 Thread Colin Law
On 31 March 2015 at 21:32, Jhonnatan Mc wrote: > Colin Law wrote in post #1171239: >> On 31 March 2015 at 20:21, Jhonnatan Mc wrote: >>> I tried that. >>> this is the project: >> >> You tried what? You have not quoted the previous message so we don't >> know what you are referring to. >> >>> >>>

[Rails] Re: Re: Object Service instance

2015-03-31 Thread Jhonnatan Mc
Colin Law wrote in post #1171239: > On 31 March 2015 at 20:21, Jhonnatan Mc wrote: >> I tried that. >> this is the project: > > You tried what? You have not quoted the previous message so we don't > know what you are referring to. > >> >> https://github.com/JhonnatanMc/Object_Service_RoR/tree/mas

Re: [Rails] Re: Object Service instance

2015-03-31 Thread Colin Law
On 31 March 2015 at 20:21, Jhonnatan Mc wrote: > I tried that. > this is the project: You tried what? You have not quoted the previous message so we don't know what you are referring to. > > https://github.com/JhonnatanMc/Object_Service_RoR/tree/master/prueba Look at the name of the class (Use

[Rails] Re: Object Service instance

2015-03-31 Thread Jhonnatan Mc
I tried that. this is the project: https://github.com/JhonnatanMc/Object_Service_RoR/tree/master/prueba -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop r

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Baturay Alhaj
Hmm his sur name "BATARD" means bastered in french! On Mar 31, 2015 6:35 PM, Norbert Melzer wrote:2015-03-31 18:20 GMT+02:00 Sean Hoar :It looks like redmine.hammicus.org was owned by Oliver Batard and was hosted on his own private network-- so whatever was in redmine is now

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Norbert Melzer
2015-03-31 18:20 GMT+02:00 Sean Hoar : > It looks like redmine.hammicus.org was owned by Oliver Batard and was > hosted on his own private network-- so whatever was in redmine is now gone, > unless he boots it back up. > If it was only the redmine, I'd hope it will boot up again. Who knows, traff

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Sean Hoar
It looks like redmine.hammicus.org was owned by Oliver Batard and was hosted on his own private network-- so whatever was in redmine is now gone, unless he boots it back up. Non-authoritative answer: redmine.hammicus.org canonical name = hammicus.org. Name: hammicus.org Address: 192.3.12.117

Re: [Rails] Re: Object Service instance

2015-03-31 Thread tamouse pontiki
On Tue, Mar 31, 2015 at 8:13 AM, Jhonnatan Mc wrote: > I don't know. > > I'am trying to do this: > > #App/Controller/user_controller > def create > @user = UserService.create(params[:user_params]) > end > > #App/services/UserService.rb > ^^ If this is the *actual* name of the file, then

[Rails] Re: Object Service instance

2015-03-31 Thread Jhonnatan Mc
I don't know. I'am trying to do this: #App/Controller/user_controller def create @user = UserService.create(params[:user_params]) end #App/services/UserService.rb class UserService class UserService def self.create(user_params) @user = User.new(user_params) end end I got

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Norbert Melzer
There are still some forks left, as you can see on my fork-graph: https://github.com/NobbZ/Lemmy/network Also github has made deepakkumarsharmas fork the main repo which has the following forkgraph: https://github.com/deepakkumarsharma/Lemmy/network Also you can see even more contributors (and po

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Sean Hoar
I just saw this thread, and now see that Oliver's github account has gone dark. I would have liked to participate as well. Can someone who was already working on this project create a new fork? Or at least comment if you are still a part of this thread and you had accepted a project invite befo

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread cheran krishnamoorthy
If everything disappears all of a sudden , there is something dodgy. He had a self signed certificate , not sure what he was up to. If you are planing to build something cool in rails, please count me in. Thanks. On Tue, Mar 31, 2015 at 2:16 PM, Norbert Melzer wrote: > > > 2015-03-30 17:45 GMT

Re: [Rails] Re: New Rails project looking for beginners rails developers

2015-03-31 Thread Norbert Melzer
2015-03-30 17:45 GMT+02:00 Krishna Gundala : > Yeah Nobert, > Lets not stop it.. and continue with what ever ideas we got and implement > something new. > Do you have any ideas on this,lets work it out... > Thats the big pity... I don't really know what Oliver wanted to achieve, nor how he wanted

Re: [Rails] Object Service instance

2015-03-31 Thread Colin Law
On 31 March 2015 at 05:18, Jhonnatan Mc wrote: > Hi (I am a beginner) > > I have a project that add users, profiles, etc. > I genetered it using scaffold. It's everything ok up here. > I need to do the crud operations in a service class and not in the > controllers. Why? Colin -- You received