similar to: "Offline" rails app?

Displaying 20 results from an estimated 10000 matches similar to: ""Offline" rails app?"

2006 Jan 21
5
Distributing a Rails app
I''ve developed a Rails application that I''d like to make generally available, but I''m not sure how to go about this, or even what tools are most appropriate. Is this something that the Rails framework provides, or is it a job for Rake? for Rubygems? for Tar2rubyscript or Rubyscript2exe? A pointer to a "Distributing your Rails Application" would be ideal. --
2005 Nov 23
8
Compiler OR Obfuscator for RoR applications?
Hi folks, I''m a newbie in the Ruby land, The Ruby language and RoR looks really great but I think in my situation there is a problem, we are an ISV that sells web application and we don''t want our clients see our source code, I searched the web but couldn''t find any way to compile and\or obfuscate ruby code (in web (RoR)), is there such tool available for the language?
2009 Mar 31
2
Packaging Rails App as Standalone EXE
Hi, Does anyone know what is currently the proper way to distribute a Rails app as a windows exe (NT Service, how to package, ...). I know there was http://www.erikveen.dds.nl/distributingrubyapplications/rails.html, but it''s pretty old. Thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2006 Jan 27
6
Switchtower deploy error
I''m trying to deploy a rails app with no success. I can execute: ''rake remote_exec ACTION=setup'' but when I try to execute : ''rake deploy'' I got this error: loading configuration c:/ruby/lib/ruby/gems/1.8/gems/switchtower-0.10.0 /lib/switchtower/recipes/standard.rb loading configuration ./config/deploy.rb executing task deploy transaction: start
2006 Feb 21
9
SwitchTower 1.0.1, SwitchTower Extensions
SwitchTower is a utility that can execute commands in parallel on multiple servers. It allows you to define tasks, which can include commands that are executed on the servers. You can also define roles for your servers, and then specify that certain tasks apply only to certain roles. Manual: http://manuals.rubyonrails.org/read/book/17 Project:
2006 Sep 05
5
Deploying Ruby on Rails as a standalone exe
I''m trying to deploy a ruby on rails application. It uses sqlite3 for a database. What I would like to do is distribute it as a windows executable. It should be in such a way that the user can click on the application and everything will load and a full screen browser window will appear. This way the user will know nothing about it being a browser and need no ruby components installed
2006 May 26
3
Packaging with mongrel
Hi All First of all - I would like to say Mongrel is fantastic! We are developing a hybrid solution incorporating a central server and local servers (which allows offline working) - with Webrick we were suffering from 500 (and other errors) that the switch to Mongrel has fixed. Since we are providing the local server as a download application we wanted to find a way to package up the code and
2006 Mar 07
2
Can I set up multiple deploy targets with Capistrano?
I have two servers up, one will be used for production, one for testing stuff. I''d like to set things up so I can upgrade each one independently. So I could type $ rake deploy That will update the test server. I do that, test it for a few minutes/hours/days whatever, then I can put it onto the main server: $ rake deploy_production Is this possible? If so, how can I do it? Pat
2005 Jul 07
3
xmat[1, 2:3] <- NULL
I have a situation where I'm filling out a dataframe from a database. Sometimes the database query doesn't get anything, so I end up trying to place NULL in the dataframe like below. > temp <- NULL > xmat <- as.data.frame(matrix(NA, 2, 3)) > xmat[1, 2:3] <- temp Error in if (m < n * p && (n * p)%%m) stop(gettextf("replacement has %d items, need %d",
2006 Feb 16
5
Firefox and IE performance with Rails App
In my rails application, certain computers were having huge problems. There were certain pages that were exceptionally slow, even to the point of timing out. Other computers did not have a problem. I finally found that Firefox was the difference. When using Firefox on those computers it works fine. The slow pages were typically posting a form with a couple hundred fields. This behavior was
2007 Jan 01
3
Another "how do I spec this?"
I wanted to add a convenience method on my User class to see if he was already signed up for a tournament. Here''s my spec context "A User signed up for one tournament" do setup do @t1 = Tournament.new @t1.save false @t2 = Tournament.new @t2.save false @user = User.new @user.save false @user.registrations << Registration.new(:tournament =>
2007 Nov 24
2
truncated fields with RODBC
I'm changing some functions from storing data in SQLite (using RSQLite) to storing it in PostgreSQL (using RODBC). When trying to store very long character fields I get the following message: > sqlSave(pg, Grids, rownames = FALSE, append = TRUE) Warning messages: 1: In odbcUpdate(channel, query, mydata, paramdata, test = test, verbose = verbose, : character data truncated in column
2006 Mar 27
4
How to create exe for my ruby on rails application?
Hello all! Can anyone throw me light to create EXE for my ruby on rails application. I need to deploy my application at the client''s place and i dont feel like exposing the source code. Thanks.. regards.. surjya.hazarika@genieinteractive.com -- Posted via http://www.ruby-forum.com/.
2006 Mar 15
3
"\r" with RSQLite
What am I doing wrong, or is the \r that I'm getting in the example below a bug? > a <- (1:10) > b <- (LETTERS[1:10]) > df <- as.data.frame(cbind(a, b)) > > df a b 1 1 A 2 2 B 3 3 C 4 4 D 5 5 E 6 6 F 7 7 G 8 8 H 9 9 I 10 10 J > library(RSQLite) > drv <- dbDriver("SQLite") > con <- dbConnect(drv, dbname = "Test")
2006 Mar 15
3
"\r" with RSQLite
What am I doing wrong, or is the \r that I'm getting in the example below a bug? > a <- (1:10) > b <- (LETTERS[1:10]) > df <- as.data.frame(cbind(a, b)) > > df a b 1 1 A 2 2 B 3 3 C 4 4 D 5 5 E 6 6 F 7 7 G 8 8 H 9 9 I 10 10 J > library(RSQLite) > drv <- dbDriver("SQLite") > con <- dbConnect(drv, dbname = "Test")
2006 Jan 28
20
Code security
I''ve just created a rails application for a friend''s business. I''m going to place the application onto one of his computers so he can access it from within his network. What can i do to make sure he cannot read/edit the code? I can''t see what i can do. Its on a windows xp machine and he has full admin rights. He''s not an expert PC user so the solution
2006 Mar 06
6
rails app in professional development environment
I''ve been working on my rails app which will be a web app that i want to launch as a business. Being new to rails i''m wondering what professional web app developers do for their development environment. Right now i''m developing and testing on my laptop. I think i''ve gotten far enough along where i want to put it up on a hosting machine to develop further,
2006 Feb 01
5
Starting lighttpd/Rails apps as user, not root
Hi everyone, When I want something to start at boot, I put it into /etc/rc*. The service will start as root, though. How do I make it start as a particular user? I''m worried about the machine going down and me not being around to pick my app back up when it does. I think this would also help my SwitchTower issue of having 8 fastcgi processes running for the app. 4 started by
2006 May 26
7
Instant Rails and your own applications
Hi, I want to make an open source rails project as easy as possible to install. Can I use Instant Rails for this? I treid to look at the FAQ but could not see this was possible. Ideally I would like to have Instant Rails install Ruby, Rails, MySql, etc and then have it add my application and add the mysql user (could be just root also) and then the sql for creating the tables. Sound like fun
2005 Nov 07
5
Switchtower deployment
Hi, Has anyone experiences using SwitchTower (Windows) in a shared hosting environment (Textdrive)? I already patched the SwitchTower rake tasks (I don''t know if someone is interested on it), but i still experience some problems (not in the sudoers list, ...). Thank you for answer (and thank you to the textdrive guys, i never had a such fast support!) -- Jean-Etienne Durand