[Rails] Rails Developer Intern to Full-Time

2013-04-16 Thread Joshua Shane Martin
We're looking for a passionate Rails Developer to join our team. We've built a social network for higher education called Nfoshare, that allows students to connect to their classmates, professors, and other learning pros, while also helping the school gain valuable insight into their learning b

Re: [Rails] Re: Deploying from Windows to Linux?

2013-02-25 Thread Joshua Shane Martin
Server and output the same in JSON with a REST > interface. > > At the same time, I'd like to explore this TorqueBox/JRuby. Where do I > start? > > On Mon, Feb 25, 2013 at 7:01 AM, Joshua Shane Martin > wrote: >> >> I don't know much about the sqladapter ge

[Rails] Re: how to create custom yaml

2013-02-24 Thread Joshua Shane Martin
Is the result a Rails model? If so, easy, just build a string and insert your variables into the string. You can do this in a model method like so: def to_yaml yaml = "---" yaml += "- name: #{self.device_name or wherever you store this}" blah blah so on return yaml end On Thursday, Fe

[Rails] Re: Load local files

2013-02-24 Thread Joshua Shane Martin
Your link would render a link on the local user's computer to "file:///C:/Videos/file.swf" - basically, it would link to that file on the *user's computer*, not the file on the server. You will have to either place the file within the Web application (under public or assets), *or* build a contr

[Rails] Re: Deploying from Windows to Linux?

2013-02-24 Thread Joshua Shane Martin
I don't know much about the sqladapter gem and how to get it working on Linux (what dependencies, libraries are needed, etc.), but I had a similar situation where I needed to store my data in an SQL Server backend. In my case, I used TorqueBox (a nice JBoss-based Rails server running on JRuby),