[Rails]

2013-01-09 Thread Tony Thompson
-- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options, visit

[Rails] Question about Primary Key

2013-01-09 Thread Alexandra E Paredes T
Hi! I've a couple of questions about the primary key on RoR: 1. Is there a way to use non-numeric autoincrement primary key? 2. Is there a way to use compound primary key? If not possible, we want to work on a ruby gem to read a database and made the model from it. So, there are

Re: [Rails] Question about Primary Key

2013-01-09 Thread Colin Law
On 9 January 2013 15:08, Alexandra E Paredes T 05-38...@usb.ve wrote: Hi! I've a couple of questions about the primary key on RoR: Is there a way to use non-numeric autoincrement primary key? Is there a way to use compound primary key? Yes, but really don't do it unless you are working with

[Rails] Rails 3.2.10 and Rspec Tests that Fail?

2013-01-09 Thread fuzzy
The following tests used to reside in requests directory and used to work ... since I have upgraded to rails 3.2.9 and now 3.2.10 they fail. I have the following tests in(I am only showing the first two tests): spec/features/authentication_pages_spec.rb require 'spec_helper'

[Rails] Re: Build Social Network with Ruby on Rails

2013-01-09 Thread Karthikeyan A.K
Yes yo can fork Diaspora and contribute to it. But first concentrate on developing your Ruby on Rails skill. On Wednesday, January 9, 2013 12:04:04 PM UTC+5:30, Ruby-Forum.com User wrote: Hello, I am new to Ruby on Rails. I am planning to start building a social network using ROR.

[Rails] Re: Question about Primary Key

2013-01-09 Thread Robert Walker
Colin Law wrote in post #1091609: On 9 January 2013 15:08, Alexandra E Paredes T 05-38...@usb.ve wrote: Yes, but really don't do it unless you are working with a legacy db that you cannot change (absolutely definitely impossible to change). Otherwise use the default id for the primary key and

[Rails] Re: RoR Guides used Textile, anybody knows how to use it?

2013-01-09 Thread Robert Walker
Elmer A. Sia wrote in post #1091187: It's saidhttp://guides.rubyonrails.org/ruby_on_rails_guides_guidelines.htmlin the RoR Guides http://guides.rubyonrails.org/index.html that it was written in Textile, a lightweight markup language. How does one use it and then come up something like that

[Rails] CSRF resets my session in Firefox

2013-01-09 Thread Jeff Miller
Hello all, I've been trying to diagnose an issue with CSRF and Firefox specifically. I've got an ajax based form, using UJS (yes, I have csrf_meta_tag in my layout and I've tried adding the X-CSRF-Token header to the ajax beforeSend events without any luck)... The form just posts some data to an

Re: [Rails] CSRF resets my session in Firefox

2013-01-09 Thread Colin Law
On 9 January 2013 20:18, Jeff Miller li...@ruby-forum.com wrote: Hello all, I've been trying to diagnose an issue with CSRF and Firefox specifically. I've got an ajax based form, using UJS (yes, I have csrf_meta_tag in my layout and I've tried adding the X-CSRF-Token header to the ajax

[Rails] Re: Build Social Network with Ruby on Rails

2013-01-09 Thread Londerson Araújo
ROR, is a framework, you can study more and you can build everything!!! -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to

[Rails] App Devs- Help Microsoft Out!

2013-01-09 Thread Jillian-Microsoft
Hey all, My name is Jillian and I’m with Microsoft User Research. Right now we are looking for app developers to participate in some upcoming studies in Redmond, WA. We would love your feedback and we'll even thank you with Microsoft technical software, hardware, or games. Feel free

[Rails] Hacking journey::routes and simple-navigation

2013-01-09 Thread Adam Wong
I really love the simple-navigation gem but there are some problems. My configuration file is structurally identical to my routes file. That redundancy is bad enough *but* if I navigate to a url that simple-navigation can't catch, it fails completely. So I'm attempting to auto-generate my

[Rails] Packaging RoR application for Ubuntu

2013-01-09 Thread sumit mahamuni
Hi, I want to package my RoR application(app installer for ubuntu .deb) to install it on ubuntu box. I've a use-case where users wants to install RoR application on ubuntu box. Does anyone have experience with it? Need Help with it. I've came across https://github.com/crohr/pkgr. It will be a

[Rails] Re: how to use localtunnel gem ?

2013-01-09 Thread tanima sarupriya
hi i want to use localtunnel to test facebook like on my localhost. But i am not able to identify the ways to do that. the installation guide says, i have to install ruby. And morever, there is no clear description about how to use localtunnel, using command prompt. please guide me. -- You

[Rails] Rack::SSL

2013-01-09 Thread Jesse Knutsen
Hey All, I have set up our site for https only using rack::ssl. I also used it to secure our app's cookies. # Enable SSL with secure cookies config.middleware.insert_before ActionDispatch::Cookies, Rack::SSL however, there is one cookie that is set by a browser technology that we will be

[Rails] Re: localhost:3000

2013-01-09 Thread James Jack-Been
I actually did edit the config file, route already. But thanks anyways. I guess I edited it wrong. Thanks for the advice on doing it myself. I probably did something wrong when I edited the file but your totally right. -- Posted via http://www.ruby-forum.com/. -- You received this message

[Rails] Re: CSRF resets my session in Firefox

2013-01-09 Thread Jeff Miller
Thanks for the response. Yeah, it's validating fine. I have discovered that the hit_id that I have in the session at the end is actually incremented by one, like it completely recreated the session, just without a shopper_id. Can't replicate in any other browser than firefox... (on Mac) --

Re: [Rails] CSRF resets my session in Firefox

2013-01-09 Thread Jim Ruther Nill
On Thu, Jan 10, 2013 at 4:18 AM, Jeff Miller li...@ruby-forum.com wrote: Hello all, I've been trying to diagnose an issue with CSRF and Firefox specifically. I've got an ajax based form, using UJS (yes, I have csrf_meta_tag in my layout and I've tried adding the X-CSRF-Token header to the

[Rails] Re: Build Social Network with Ruby on Rails

2013-01-09 Thread Mina Riad
Thanks for your responses. What I am wondering it's whether Diaspora can work as a platform to build a social network on (the same way Insoshi and Lovdbyless are). I have been doing some research on the project but it's not clear to me whether it can be used for that purpose or not. --

[Rails] Re: Build Social Network with Ruby on Rails

2013-01-09 Thread KwBen
I'm also planning similar, but have concern on using Diaspora as the backbone. The best way to find out whether it suits your need is to fork a copy and deploy it by yourself and play with it for a while to have your own conclusion. As Karthikeyan suggest you (and me included) shoudl

[Rails] [JOBS] Seeking Ruby on Rails developers in Dallas, TX area

2013-01-09 Thread adfwrecruiter
Must have event-driven processing expertise. Linux environment. Mobile apps dvlpmt. NW suburban location. Recruiter: Liz Klein 469-223-4900 adfwrecrui...@gmail.com or l...@talentlegends.com www.talentlegends.com LinkedIn profile at

Re: [Rails] Re: Build Social Network with Ruby on Rails

2013-01-09 Thread Cassio Soares Cabral
I just saw that Lovdbyless and it seems very good. My advice would be, use Lovdbyless. Diaspora follow a different concept of social network. 2013/1/9 Mina Riad li...@ruby-forum.com Thanks for your responses. What I am wondering it's whether Diaspora can work as a platform to build a social

Re: [Rails] Build Social Network with Ruby on Rails

2013-01-09 Thread Jeffrey Jones
I have never used this but remember running across it a while ago and it still appears to be active http://communityengine.org/ Of course you will still need to do work on it, but it is a base. On 09/01/13 15:34, Mina Riad wrote: Hello, I am new to Ruby on Rails. I am planning to start