Ruby on Rails Tuesday, March 31, 2015

http://github.com/discourse/discourse

--Rob
Sent from my cell, please excuse any typos.

On Apr 1, 2015 1:58 AM, "Colin Wood" <mr.colin.wood@gmail.com> 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 good open source projects needing help from a newcomer to rails. Im   very comfortable with Ruby, jquery, html, HTTP, and Relational Databases but just can't seem to find a project that sparks my interest on Github. I have gone through a few Rails books and feel its time to get out of my basement and into the world.  Anyone working on anything that they could use some help on? Ready set go!

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/a3676754-7d3f-44cc-a844-2baa29fb09d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAPncwvLsc4CQk43V6nvQc6%2B8L2nH_r-gc_UVqkqW8Znhc2MmLw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

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 mixing ANDs and ORs.

Anyhow, I ran in to ransack, which seems to be a promising starting point for this kind of functionality, if not supported out of the box. Haven't had time to try it out yet.

 - fred

On Monday, March 30, 2015 at 11:15:08 PM UTC+3, Dave Aronson wrote:
On Mon, Mar 30, 2015 at 3:55 PM, Fredrik Boström <fbos...@gmail.com> wrote:

> Maybe I expressed myself a bit unclearly. I'm not trying to reinvent SQL or
> create a new database implementation, that's insane!

Okay.  Maybe I jumped the gun a bit too; I've seen lots of zealous
people, at the stage where they "know enough to be dangerous", head
down such a path.  :-)

> What I'm after is a way to
> do more complex filtering of the result set using query parameters than what
> ActiveRecord now supports.

Perhaps you could take query params that included embedded ANDs and
ORs and some parentheses, and pass them off to some gem that can
handle that on each field.  So, you would wind up with a URL like:

GET /api/users?name=Doris OR Fred&location=Stockholm&hobbies=horseback
OR swimming

Then, inside your controller (or better yet, User.search method or
UserSearch.call or whatever), have it take whatever searchable params
were given and hand them off to, say, Solr or ThinkingSphinx or
whatever.

Or-ing THOSE together, so as to look for anyone who's in Stockholm OR
is interested in horseback or swimming, is another story.  I think you
can do that with Solr (been a while since I've used it) but of course
the handling and syntax would be different.

In summary, check out the assorted search gems, especially full-text
search, see what they can do for you, and base your syntax on what can
be easily broken up into the kinds of pieces your preferred search gem
expects.

-Dave

--
Dave Aronson, consulting software developer of Codosaur.us,
PullRequestRoulette.com, Blog.Codosaur.us, and Dare2XL.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 receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/824603c9-7c2b-4ee4-b3b2-e6c6b38d643c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

Thanks a lot Nobert, you made this happen again.
Lets ROCK.. :)


On Tue, Mar 31, 2015 at 8:09 PM, Norbert Melzer <timmelzer@gmail.com> wrote:
OK, as promised, I took some notes and pushed them to my fork.


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 given file.

Also I would be glad if I could see one or another person willing to talk/help in the new gitter.im channel https://gitter.im/NobbZ/Lemmy

2015-03-31 14:29 GMT+02:00 Norbert Melzer <timmelzer@gmail.com>:
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 possible forks) on https://github.com/deepakkumarsharma/Lemmy/network/members

But I can tell, that every fork I have checked is some commits behind what Oliver had. But since even he hasn't much, so I think that it doesn't matter.

Anyway, as I told already, I don't know what Olivers goals really were. He was never really concrete, but used buzzwords, be it in the readme, issues, or the chat. So it will be hard to do what he originally planed, but I can try to remember some discussions I had with him and I will add the bits I remember to a new file of my fork.

2015-03-31 13:02 GMT+02:00 Sean Hoar <sean.hoar@gmail.com>:
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 before it went dark?

Thank you,

Sean

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f2a13533-72a3-41b9-873f-b75eb800c447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CA%2BbCVssEn1L%3D_jH0Zs1DK2JoRcoF6VB8dFo8yFwdG_e_JPd%3DrQ%40mail.gmail.com.

For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAMszB6wxYpBe2cJkURCkpAmHauqRPEtEvQj9igbsAQLLbSSbNA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

OK, as promised, I took some notes and pushed them to my fork.


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 given file.

Also I would be glad if I could see one or another person willing to talk/help in the new gitter.im channel https://gitter.im/NobbZ/Lemmy

2015-03-31 14:29 GMT+02:00 Norbert Melzer <timmelzer@gmail.com>:
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 possible forks) on https://github.com/deepakkumarsharma/Lemmy/network/members

But I can tell, that every fork I have checked is some commits behind what Oliver had. But since even he hasn't much, so I think that it doesn't matter.

Anyway, as I told already, I don't know what Olivers goals really were. He was never really concrete, but used buzzwords, be it in the readme, issues, or the chat. So it will be hard to do what he originally planed, but I can try to remember some discussions I had with him and I will add the bits I remember to a new file of my fork.

2015-03-31 13:02 GMT+02:00 Sean Hoar <sean.hoar@gmail.com>:
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 before it went dark?

Thank you,

Sean

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f2a13533-72a3-41b9-873f-b75eb800c447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CA%2BbCVssEn1L%3D_jH0Zs1DK2JoRcoF6VB8dFo8yFwdG_e_JPd%3DrQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

at first glance it seems reasonable

Sent from my iPhone

On 30 Mar 2015, at 08:43, mmontossi@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 like "the username is too long", and the tokenizer is ideal for strings situations but when it comes to arrays, collections, etc is really strange to override the message error and not being able to use some kind of selector.


I was using this validator to thinks like:

validates_count_of :photos, within: 1..3, selector: ->(photos) { photos.reject(&:marked_for_destruction?) }

This allows to have new errors.messages keys to express quantity:

errors.messages.too_many
errors.messages.too_few
errors.messages.wrong_count

Anyone shares this point of view?

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/4fbcca9f-1cc6-4fae-bb4a-fd482021bcf4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/debug_inspector-0.0.2/lib/debug_inspector.bundle: [BUG] Segmentation fault at 0x00000000000418

ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-darwin14]


-- Crash Report log information --------------------------------------------

   See Crash Report log file under the one of following:

     * ~/Library/Logs/CrashReporter

     * /Library/Logs/CrashReporter

     * ~/Library/Logs/DiagnosticReports

     * /Library/Logs/DiagnosticReports

   for more details.


-- Control frame information -----------------------------------------------

c:0030 p:-17536259819252 s:0114 e:000113 TOP    [FINISH]

c:0029 p:---- s:0112 e:000111 CFUNC  :require

c:0028 p:0038 s:0108 e:000107 TOP    /Users/Feras/.rvm/gems/ruby-2.2.1/gems/debug_inspector-0.0.2/lib/debug_inspector.rb:6 [FINISH]

c:0027 p:---- s:0105 e:000104 CFUNC  :require

c:0026 p:0007 s:0101 e:000100 TOP    /Users/Feras/.rvm/gems/ruby-2.2.1/gems/binding_of_caller-0.7.2/lib/binding_of_caller/mri2.rb:1 [FINISH]

c:0025 p:---- s:0099 e:000098 CFUNC  :require

c:0024 p:0043 s:0095 e:000094 TOP    /Users/Feras/.rvm/gems/ruby-2.2.1/gems/binding_of_caller-0.7.2/lib/binding_of_caller.rb:9 [FINISH]

c:0023 p:---- s:0092 e:000091 CFUNC  :require

c:0022 p:0007 s:0088 e:000087 TOP    /Users/Feras/.rvm/gems/ruby-2.2.1/gems/web-console-2.1.2/lib/web_console.rb:1 [FINISH]

c:0021 p:---- s:0086 e:000085 CFUNC  :require

c:0020 p:0007 s:0082 e:000081 TOP    /Users/Feras/.rvm/gems/ruby-2.2.1/gems/web-console-2.1.2/lib/web-console.rb:1 [FINISH]

c:0019 p:---- s:0080 e:000079 CFUNC  :require

c:0018 p:0037 s:0076 e:000075 BLOCK  /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:76 [FINISH]

c:0017 p:---- s:0073 e:000072 CFUNC  :each

c:0016 p:0053 s:0070 e:000069 BLOCK  /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:72 [FINISH]

c:0015 p:---- s:0064 e:000063 CFUNC  :each

c:0014 p:0030 s:0061 e:000060 METHOD /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:61

c:0013 p:0017 s:0057 e:000056 METHOD /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler.rb:134

c:0012 p:0049 s:0053 e:000052 TOP    /Users/Feras/blog/config/application.rb:7 [FINISH]

c:0011 p:---- s:0051 e:000050 CFUNC  :require

c:0010 p:0046 s:0047 e:000046 METHOD /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:82

c:0009 p:0080 s:0042 e:000041 METHOD /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:143

c:0008 p:0065 s:0029 e:000028 BLOCK  /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:131 [FINISH]

c:0007 p:---- s:0027 e:000026 CFUNC  :loop

c:0006 p:0023 s:0024 e:000023 METHOD /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:125

c:0005 p:0128 s:0021 E:002658 TOP    /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application/boot.rb:18 [FINISH]

c:0004 p:---- s:0018 e:000017 CFUNC  :require

c:0003 p:0113 s:0014 e:000013 METHOD /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54

c:0002 p:0007 s:0004 E:001500 EVAL   -e:1 [FINISH]

c:0001 p:0000 s:0002 E:0007d0 TOP    [FINISH]


-- Ruby level backtrace information ----------------------------------------

-e:1:in `<main>'

/Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'

/Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application/boot.rb:18:in `<top (required)>'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:125:in `run'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:125:in `loop'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:131:in `block in run'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:143:in `serve'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:82:in `preload'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb:82:in `require'

/Users/Feras/blog/config/application.rb:7:in `<top (required)>'

/Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler.rb:134:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:61:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:61:in `each'

/Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:72:in `block in require'

/Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:72:in `each'

/Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:76:in `block (2 levels) in require'

/Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/runtime.rb:76:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/web-console-2.1.2/lib/web-console.rb:1:in `<top (required)>'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/web-console-2.1.2/lib/web-console.rb:1:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/web-console-2.1.2/lib/web_console.rb:1:in `<top (required)>'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/web-console-2.1.2/lib/web_console.rb:1:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/binding_of_caller-0.7.2/lib/binding_of_caller.rb:9:in `<top (required)>'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/binding_of_caller-0.7.2/lib/binding_of_caller.rb:9:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/binding_of_caller-0.7.2/lib/binding_of_caller/mri2.rb:1:in `<top (required)>'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/binding_of_caller-0.7.2/lib/binding_of_caller/mri2.rb:1:in `require'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/debug_inspector-0.0.2/lib/debug_inspector.rb:6:in `<top (required)>'

/Users/Feras/.rvm/gems/ruby-2.2.1/gems/debug_inspector-0.0.2/lib/debug_inspector.rb:6:in `require'


-- Machine register context ------------------------------------------------

 rax: 0x0000000000000030 rbx: 0x0000000102d07f08 rcx: 0x0000000000000000

 rdx: 0xfffffffffffffff0 rdi: 0x0000000000000030 rsi: 0x0000000000000000

 rbp: 0x00007fff5e043260 rsp: 0x00007fff5e043260  r8: 0x000000000000000b

  r9: 0x00000000fffffffe r10: 0x0000000000000a58 r11: 0x00007fff8f1b9c40

 r12: 0x00007fff73e3a070 r13: 0x00007f97d1c08fd0 r14: 0x0000000000000006

 r15: 0x00007fff5e0432f0 rip: 0x0000000103e4049f rfl: 0x0000000000010246


-- C level backtrace information -------------------------------------------

0   ruby                                0x0000000101e6f98b rb_vm_bugreport + 155

1   ruby                                0x0000000101d13e80 rb_bug_context + 480

2   ruby                                0x0000000101dec2f3 sigsegv + 83

3   libsystem_platform.dylib            0x00007fff8f1b8f1a _sigtramp + 26

4   libruby.2.0.0.dylib                 0x0000000103e4049f ruby_xmalloc + 17

5   ???                                 0x00007fff5e043280 0x0 + 140734770721408


-- Other runtime information -----------------------------------------------


* Loaded script: spring app    | blog | started 0 secs ago | development mode


* Loaded features:


    0 enumerator.so

    1 rational.so

    2 complex.so

    3 encdb.so

    4 trans/transdb.so

    5 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/unicode_normalize.rb

    6 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/x86_64-darwin14/rbconfig.rb

    7 thread.rb

    8 thread.so

    9 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/compatibility.rb

   10 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/defaults.rb

   11 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/deprecate.rb

   12 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/errors.rb

   13 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/version.rb

   14 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/requirement.rb

   15 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/platform.rb

   16 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/basic_specification.rb

   17 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/stub_specification.rb

   18 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/util/stringio.rb

   19 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/specification.rb

   20 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/exceptions.rb

   21 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_gem.rb

   22 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/monitor.rb

   23 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb

   24 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems.rb

   25 socket.so

   26 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/socket.rb

   27 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/errors.rb

   28 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/configuration.rb

   29 pathname.so

   30 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/pathname.rb

   31 etc.so

   32 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/fileutils.rb

   33 digest.so

   34 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/digest.rb

   35 digest/md5.so

   36 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/tmpdir.rb

   37 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/version.rb

   38 fiddle.so

   39 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/fiddle/function.rb

   40 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/fiddle/closure.rb

   41 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/fiddle.rb

   42 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/sid.rb

   43 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/env.rb

   44 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/process_title_updater.rb

   45 stringio.so

   46 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/json.rb

   47 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/set.rb

   48 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/mutex_m.rb

   49 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/watcher/abstract.rb

   50 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/watcher/polling.rb

   51 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/watcher.rb

   52 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/boot.rb

   53 pty.so

   54 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/application.rb

   55 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/command_wrapper.rb

   56 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/commands/rails.rb

   57 /Users/Feras/.rvm/gems/ruby-2.2.1/gems/spring-1.3.3/lib/spring/commands/rake.rb

   58 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/constants.rb

   59 io/console.so

   60 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/user_interaction.rb

   61 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/config_file.rb

   62 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/ext/build_error.rb

   63 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/ext/builder.rb

   64 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/ext/configure_builder.rb

   65 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/delegate.rb

   66 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/tempfile.rb

   67 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/ext/ext_conf_builder.rb

   68 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/ext/rake_builder.rb

   69 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/optparse.rb

   70 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/command.rb

   71 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/ext/cmake_builder.rb

   72 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/ext.rb

   73 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/rubygems_integration.rb

   74 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/current_ruby.rb

   75 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/dependency.rb

   76 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/shared_helpers.rb

   77 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/gem_path_manipulation.rb

   78 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/gem_helpers.rb

   79 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/match_platform.rb

   80 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/rubygems_ext.rb

   81 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/version.rb

   82 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler.rb

   83 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/rfc2396_parser.rb

   84 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/rfc3986_parser.rb

   85 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/common.rb

   86 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/generic.rb

   87 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/ftp.rb

   88 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/http.rb

   89 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/https.rb

   90 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/ldap.rb

   91 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/ldaps.rb

   92 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri/mailto.rb

   93 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/uri.rb

   94 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/settings.rb

   95 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/path_support.rb

   96 digest/sha1.so

   97 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/definition.rb

   98 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/dependency.rb

   99 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/ruby_dsl.rb

  100 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/dsl.rb

  101 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/source_list.rb

  102 /Users/Feras/.rvm/gems/ruby-2.2.1@global/gems/bundler-1.9.2/lib/bundler/source.rb

  103 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/timeout.rb

  104 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/protocol.rb

  105 zlib.so

  106 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/exceptions.rb

  107 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/header.rb

  108 enc/windows_31j.so

  109 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/generic_request.rb

  110 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/request.rb

  111 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/requests.rb

  112 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/response.rb

  113 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/responses.rb

  114 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/proxy_delta.rb

  115 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http/backward.rb

  116 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http.rb

  117 date_core.so

  118 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/date.rb

  119 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/time.rb

  120 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/request/http_pool.rb

  121 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/request/https_pool.rb

  122 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/request/connection_pools.rb

  123 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/request.rb

  124 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/cgi/core.rb

  125 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/cgi/util.rb

  126 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/cgi/cookie.rb

  127 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/cgi.rb

  128 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/uri_formatter.rb

  129 openssl.so

  130 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/openssl/bn.rb

  131 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/openssl/cipher.rb

  132 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/openssl/config.rb

  133 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/openssl/digest.rb

  134 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/openssl/x509.rb

  135 /Users/Feras/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/openssl/buffering.rb

  136 fcntl.so


--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/744fc281-cddb-4c02-b918-fe0e22887665%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

Colin Law wrote in post #1171241:
> On 31 March 2015 at 21:32, Jhonnatan Mc <lists@ruby-forum.com> 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 user_service.
>> the class name is UserService.
>
> Correct the code in your repo then copy/paste here the error you get
> with the correct name.
>
> Colin

NameError in UsersController#create
uninitialized constant UsersController::UserService

--
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 receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/b8c48b7f0eadba1f036b367cce32aff6%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

On 31 March 2015 at 21:32, Jhonnatan Mc <lists@ruby-forum.com> wrote:
> Colin Law wrote in post #1171239:
>> On 31 March 2015 at 20:21, Jhonnatan Mc <lists@ruby-forum.com> 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 (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 user_service.
> the class name is UserService.

Correct the code in your repo then copy/paste here the error you get
with the correct name.

Colin

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLtMN13xermkom3Y7MwS13rqYPiTx%2BmRJ-6uChUBZuZ26g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

Colin Law wrote in post #1171239:
> On 31 March 2015 at 20:21, Jhonnatan Mc <lists@ruby-forum.com> 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 (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 user_service.
the class name is UserService.

--
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 receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/2cbb4ae444e39353960e4ac43bc1233f%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

On 31 March 2015 at 20:21, Jhonnatan Mc <lists@ruby-forum.com> 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 (UserService). Now look at the name of
the file. Now look again if necessary. Keep looking...

Colin

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLu%3DFtNtvbTqwbLWi9TntqiK623GbALsZJhnKEJSByJGpQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

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 receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/b2b8a8896587780641b4c4aae67d69ff%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

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 Databases but just can't seem to find a project that sparks my interest on Github. I have gone through a few Rails books and feel its time to get out of my basement and into the world.  Anyone working on anything that they could use some help on? Ready set go!

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/a3676754-7d3f-44cc-a844-2baa29fb09d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

Hmm his sur name "BATARD" means bastered in french!

On Mar 31, 2015 6:35 PM, Norbert Melzer <timmelzer@gmail.com> wrote:


2015-03-31 18:20 GMT+02:00 Sean Hoar <sean.hoar@gmail.com>:
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, trafficlimits may kick in whenever you don't expect them ;) But that at the same time also his github account is gone, and he did non answer any mail since them, neither private ones nor the public ones... That is really suspicous, and I'm kind of worried about Olivers whereabouts... 

<nslookup redmine.hammicus.org>

Non-authoritative answer:

redmine.hammicus.org canonical name = hammicus.org.

Name: hammicus.org

Address: 192.3.12.117



On Tue, Mar 31, 2015 at 8:29 AM, Norbert Melzer <timmelzer@gmail.com> wrote:
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 possible forks) on https://github.com/deepakkumarsharma/Lemmy/network/members

But I can tell, that every fork I have checked is some commits behind what Oliver had. But since even he hasn't much, so I think that it doesn't matter.

Anyway, as I told already, I don't know what Olivers goals really were. He was never really concrete, but used buzzwords, be it in the readme, issues, or the chat. So it will be hard to do what he originally planed, but I can try to remember some discussions I had with him and I will add the bits I remember to a new file of my fork.

2015-03-31 13:02 GMT+02:00 Sean Hoar <sean.hoar@gmail.com>:
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 before it went dark?

Thank you,

Sean

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f2a13533-72a3-41b9-873f-b75eb800c447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to a topic in the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rubyonrails-talk/bKlW-LwjK4A/unsubscribe.
To unsubscribe from this group and all its topics, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CA%2BbCVssB1yjGC6saybO3AYEMwP3Z04SurEguAjo_SkjrvkAWZg%40mail.gmail.com.

For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAJLLUc_dhd94FYntH%2BbDxJcL%3DsZjwru7uRmprhw-5w4sEpC1Fg%40mail.gmail.com.

For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to a topic in the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rubyonrails-talk/bKlW-LwjK4A/unsubscribe.
To unsubscribe from this group and all its topics, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CA%2BbCVss3fckCskzqeh2BHu_XiVC45a4Dtcmb_qP9_tLcH7MV2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/551ad3c0.2b61c20a.50bb.ffff9bd9%40mx.google.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails



2015-03-31 18:20 GMT+02:00 Sean Hoar <sean.hoar@gmail.com>:
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, trafficlimits may kick in whenever you don't expect them ;) But that at the same time also his github account is gone, and he did non answer any mail since them, neither private ones nor the public ones... That is really suspicous, and I'm kind of worried about Olivers whereabouts... 

<nslookup redmine.hammicus.org>

Non-authoritative answer:

redmine.hammicus.org canonical name = hammicus.org.

Name: hammicus.org

Address: 192.3.12.117



On Tue, Mar 31, 2015 at 8:29 AM, Norbert Melzer <timmelzer@gmail.com> wrote:
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 possible forks) on https://github.com/deepakkumarsharma/Lemmy/network/members

But I can tell, that every fork I have checked is some commits behind what Oliver had. But since even he hasn't much, so I think that it doesn't matter.

Anyway, as I told already, I don't know what Olivers goals really were. He was never really concrete, but used buzzwords, be it in the readme, issues, or the chat. So it will be hard to do what he originally planed, but I can try to remember some discussions I had with him and I will add the bits I remember to a new file of my fork.

2015-03-31 13:02 GMT+02:00 Sean Hoar <sean.hoar@gmail.com>:
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 before it went dark?

Thank you,

Sean

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f2a13533-72a3-41b9-873f-b75eb800c447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to a topic in the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rubyonrails-talk/bKlW-LwjK4A/unsubscribe.
To unsubscribe from this group and all its topics, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CA%2BbCVssB1yjGC6saybO3AYEMwP3Z04SurEguAjo_SkjrvkAWZg%40mail.gmail.com.

For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAJLLUc_dhd94FYntH%2BbDxJcL%3DsZjwru7uRmprhw-5w4sEpC1Fg%40mail.gmail.com.

For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CA%2BbCVss3fckCskzqeh2BHu_XiVC45a4Dtcmb_qP9_tLcH7MV2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

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.  


<nslookup redmine.hammicus.org>

Non-authoritative answer:

redmine.hammicus.org canonical name = hammicus.org.

Name: hammicus.org

Address: 192.3.12.117



On Tue, Mar 31, 2015 at 8:29 AM, Norbert Melzer <timmelzer@gmail.com> wrote:
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 possible forks) on https://github.com/deepakkumarsharma/Lemmy/network/members

But I can tell, that every fork I have checked is some commits behind what Oliver had. But since even he hasn't much, so I think that it doesn't matter.

Anyway, as I told already, I don't know what Olivers goals really were. He was never really concrete, but used buzzwords, be it in the readme, issues, or the chat. So it will be hard to do what he originally planed, but I can try to remember some discussions I had with him and I will add the bits I remember to a new file of my fork.

2015-03-31 13:02 GMT+02:00 Sean Hoar <sean.hoar@gmail.com>:
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 before it went dark?

Thank you,

Sean

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f2a13533-72a3-41b9-873f-b75eb800c447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to a topic in the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rubyonrails-talk/bKlW-LwjK4A/unsubscribe.
To unsubscribe from this group and all its topics, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CA%2BbCVssB1yjGC6saybO3AYEMwP3Z04SurEguAjo_SkjrvkAWZg%40mail.gmail.com.

For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAJLLUc_dhd94FYntH%2BbDxJcL%3DsZjwru7uRmprhw-5w4sEpC1Fg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails

 

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, PostgreSQL.

Also lots of bleeding-edge tools and technologies like Redis, React.js, Canvas

 

Requirements:
  • Must have a minimum 2 years of experience developing in Ruby, Ruby on Rails
  • B.S. / B.A. in Computer Science or equivalent experience
  • Creative with excellent problem solving and analytical skills
  • Passion for product quality and attention to details
  • Experience in and enthusiasm for working with a team of software developers
  • Able to and enjoy learning new concepts in a quick time frame and being able to apply them professionally

 

Travel not required Telecommuting not available




If you are interested! please reach out to me AT Lisa(at)gatestaffing(dot)com

Lisa



Lisa Vella-Alvarado | Principal
GATE Staffing, LLC.
19 West 36th Street -12th Floor
New York, NY 10018

(646)-374-0912-direct
(813)-334-5959-cell

lisa@gatestaffing.com

"Greatness Achieved Through Excellence"

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/eb80f08d-8790-4c4a-b261-854d6f20b842%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ruby on Rails



On Tue, Mar 31, 2015 at 8:13 AM, Jhonnatan Mc <lists@ruby-forum.com> 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 autoloading will not work on it. When Rails encounters a class called "UserService" it looks through the autoload paths for a file entitled: "user_service.rb" (i.e. snake case, not CamelCase).
 

class UserService

class UserService


   def self.create(user_params)

     @user = User.new(user_params)

  end
end

I got this error message:
uninitialized constant UsersController::UserService

@user = UserService.create(params[:user_params])

--
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 receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/0698186294f783829b9056762b8840db%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

--
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 rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAHUC_t9gaOxxs4JjBJO_pu66rLO2MtFCyZUYBKiNrV_PpE5DXg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.