[Rails] Re: Relational DB - Related and not Related

2013-06-24 Thread Cameron Gilroy
Thanks Dave & Colin! That was how I had hoped it would work! On Monday, June 24, 2013 10:54:14 PM UTC+10, Cameron Gilroy wrote: > > Hi > > I'm working on a project that has users and groups, users can be members > of a group *or* they can just be a user - what's going to be the best way > to dea

[Rails] Re: ActiveRecord::Base.transaction - SystemStackError - stack level too deep:

2013-06-24 Thread Bob O
Thanks Matt. That was the problem. At one point I had pulled those out, or at least I thought I did. I guess thats why I was confused. Anyway. Thanks For the help. I do have Michaels stuff. Its very good. My setters were a rookie mistake. One thing that I wish i could find more stuff about is

[Rails] Re: How to send a cookie without having it CGI escaped

2013-06-24 Thread anywho
I ended up using headers['Set-Cookie'] = 'cookiename=key=value@key2=value2; domain=.domain.com; path=/' -- 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

[Rails] How to send a cookie without having it CGI escaped

2013-06-24 Thread anywho
hi, I'm trying to get a cookie to store in the format key=value@key2=value2 ( compatibility reasons over which I have no control ). However, when the cookie get's set, it is stored as key%3Avalue%40key2%3Avalue2 which is what the CGI.escaped version of key=value@key2=value2 looks like. How

[Rails] [JOBS] Jr. & Sr. RoR Developers—San Francisco and LA—$130-170K

2013-06-24 Thread liz
I'm working a group of Bay Area companies with fun company culture and great compensation—Chartboost, Everlane and Triggit. Chartboost is based in downtown SF and just raised $19 million in funding from Sequoia Capital. They want a Sr. Ruby Developer to join their small team of engineers—guys

Re: [Rails] Rails 3 application capable of generating an offline version of itself for download as zip archive

2013-06-24 Thread Paul
It sounds like you might want to implement an offline app instead. There is browser support in most browsers for appcache to make all your assets available offline, and there is the javascript call navigator.onLine that will tell you if you are offline or not. You'll have to create and maintain an

Re: [Rails] ruby pack unexpected results

2013-06-24 Thread Colin Law
On 24 June 2013 20:59, Colin Law wrote: > On 24 June 2013 17:49, John Merlino wrote: >> I have two hex values and expect back the value "3007" >> >> >> What pack does is take the array of hexes and formats them into a string (if >> ASCII representation, then ASCII character, otherwise the raw hex

Re: [Rails] ruby pack unexpected results

2013-06-24 Thread Colin Law
On 24 June 2013 17:49, John Merlino wrote: > I have two hex values and expect back the value "3007" > > > What pack does is take the array of hexes and formats them into a string (if > ASCII representation, then ASCII character, otherwise the raw hex as > string). Then I take the string of hexes a

[Rails] [HELP] Couldn't find Search with id= from controller

2013-06-24 Thread cornelius wilson
I have been working on the search form for my app. The advanced search works fine, however I am unable to get the regular search form to work. It should be able to search the entire user database, and I should be able to string keywords together. For example if I search the term "no kids" it should

[Rails] wrong number of arguments calling `request` (0 for 1) (ArgumentError)

2013-06-24 Thread ROR Architect
Here is the scenario Scenario: Successful login Given an unauthenticated visitor When visitor goes to /users/login And fills in Email with: amitpandya And fills in Password with: amitpandya And clicks the Login button Then amitpandya should be logged in And page sho

[Rails] Re: ActiveRecord::Base.transaction - SystemStackError - stack level too deep:

2013-06-24 Thread Matt Jones
On Sunday, 23 June 2013 20:22:26 UTC-7, Bob O wrote: > > This is the TransactionAttributes > > module TransactionAttributes > > def success > success > end > > def success=(success) > self.success = success > end > That's the problem right there - this method is calling itself. I

[Rails] Re: Ruby On Rails integrate with Object C

2013-06-24 Thread haxuan lac
I have some information about handleOpenURL with IOS<4.2 for delegate file and applicationpenURL:sourceApplication:annotation with IOS >=4.3 I don't konw how to use this method in ROR someone can solve for me this question ,please Thanks -- Posted via http://www.ruby-forum.com/. -- You

[Rails] Re: Installing gems to user directory - Configurations - How to ?

2013-06-24 Thread Robert Walker
Boopathi Rajaa wrote in post #1113443: > I compiled Ruby from source, and installed it to /opt/ruby/ . > The purpose is to have two versions of Ruby 1.9 and Ruby 1.8 ... Certain > users can use 1.9 > > After creating a rails app (rails new app) , When a script performs > `bundle > install`, the gem

Re: [Rails] Installing gems to user directory - Configurations - How to ?

2013-06-24 Thread Dheeraj Kumar
You could use rvm or rbenv instead. On Jun 24, 2013 10:05 PM, "Boopathi Rajaa" wrote: > I compiled Ruby from source, and installed it to /opt/ruby/ . > The purpose is to have two versions of Ruby 1.9 and Ruby 1.8 ... Certain > users can use 1.9 > > After creating a rails app (rails new app) , Whe

[Rails] ruby pack unexpected results

2013-06-24 Thread John Merlino
I have two hex values and expect back the value "3007" What pack does is take the array of hexes and formats them into a string (if ASCII representation, then ASCII character, otherwise the raw hex as string). Then I take the string of hexes and unpack them, that is, get the unsigned int repre

[Rails] Re: Ruby On Rails integrate with Object C

2013-06-24 Thread Robert Walker
haxuan lac wrote in post #1113439: > I want to build Application with ROR > and this App can integrate with Object same as Client > But I don't know how to build it > Please give me some advice for it. > Thanks. You might want to try this: https://github.com/RestKit/RestKit -- Posted via ht

[Rails] Installing gems to user directory - Configurations - How to ?

2013-06-24 Thread Boopathi Rajaa
I compiled Ruby from source, and installed it to /opt/ruby/ . The purpose is to have two versions of Ruby 1.9 and Ruby 1.8 ... Certain users can use 1.9 After creating a rails app (rails new app) , When a script performs `bundle install`, the gems are trying to get installed in /opt/ruby/. How

[Rails] Ruby On Rails integrate with Object C

2013-06-24 Thread haxuan lac
I want to build Application with ROR and this App can integrate with Object same as Client But I don't know how to build it Please give me some advice for it. Thanks. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby

Re: [Rails] Relational DB - Related and not Related

2013-06-24 Thread Dave Aronson
On Mon, Jun 24, 2013 at 10:11 AM, Colin Law wrote: > If the user can only be a member of one group then use User belongs_to > group. Oh, good point. I was assuming (and you know what happens then!) that a User could belong to many Groups. -Dave -- Dave Aronson, the T. Rex of Codosaurus LLC,

Re: [Rails] Relational DB - Related and not Related

2013-06-24 Thread Colin Law
On 24 June 2013 13:54, Cameron Gilroy wrote: > Hi > > I'm working on a project that has users and groups, users can be members of > a group or they can just be a user - what's going to be the best way to deal > with this? If the user can only be a member of one group then use User belongs_to grou

Re: [Rails] Relational DB - Related and not Related

2013-06-24 Thread Dave Aronson
On Mon, Jun 24, 2013 at 8:54 AM, Cameron Gilroy wrote: > users can be members of a group or they can just be a > user - what's going to be the best way to deal with this? has_many :through seems perfect for this, given the many-to-many nature and the possibility you'll want to have additional in

[Rails] Relational DB - Related and not Related

2013-06-24 Thread Cameron Gilroy
Hi I'm working on a project that has users and groups, users can be members of a group *or* they can just be a user - what's going to be the best way to deal with this? I understand the normal has_many relationship just not sure how to do this one. Will try to post some code snippets tomorrow.

[Rails] Constructor CMS

2013-06-24 Thread Иван Зотов
Hello. I write open source CMS (Constructor) on Rails 4. Version of project is 0.7.3 now. I wanted to tell about it when version 1.0.0 will be released but I can't wait )). RoR developers, please look http://github.com/ivanzotov/constructor. This CMS has interesting template system, that allow y