Displaying 6 results from an estimated 6 matches for "bketelsen".
Did you mean:
ketelsen
2006 Feb 19
3
"syncPeople on Rails" Bundle 0.7 Released
This has been such a fun project. Couldn''t keep myself away:
http://blog.inquirylabs.com/2006/02/19/syncpeople-on-rails-07/
== Summary ==
Easily navigate between ActionMailer models, views, partials,
controllers, helpers, javascripts and stylesheets with a single key
(keypad ''enter'') in TextMate. This release also adds an Enhanced
TODO List (ctrl-shift-t) and
2009 Oct 09
1
While we're on the topic
First - Thanks! We''re loving Unicorn.
I''m serving about 200K API requests a day on a few linux servers
running Unicorn. We have the API calls, and also some admin stuff
that has a UI. I have a pair of F5 load balancers in front of the
setup with two pools. The API pool passes directly to the unicorns,
while the UI pool passes to nginx which passes to unicorn. At
2009 Oct 13
7
Unicorn Nginx Issue
I''ve setup nginx with this
server {
listen 80;
server_name unicorn.local;
location / {
proxy_pass http://unicorn;
}
}
upstream unicorn {
server unix:/Users/mattmongeau/projects/test/unicorn/tmp/sockets/unicorn.sock;
}
When I run unicorn_rails -c config/unicorn.rb -E development I can
access the application just fine on unicorn.local
When I run unicorn_rails -c
2006 Feb 25
6
[OT-ish] Rails, Mongrel and apache
This is kind of off topic. I want to put my fancy rails app (myapp) as
a subdirectory on my os x server. so my osx server works fine right now
as www.mydomain.com. How do I tell apache (1.3 i think) to proxy web
requests for a subdirectory /myapp to localhost:3000 where I have
mongrel running (Jed, you rock)?
I googled, but I don''t know the right words to use, so I''m not
2006 Jun 22
18
Ruby on Rails Live CD
I''m pleased to announce the initial release of the new Ruby on Rails
LiveCD Linux Distribution. http://www.railslivecd.org
The RailsLiveCD offers most of what an average Rails developer needs
right out of the box! That includes :
Ruby 1.8.4
Rails 1.1.2
Capistrano 1.1.0
Mongrel 0.3.13
Rake 0.7.1
Subversion
MySQL 4.1.12
MySQL Administrator
RadRails
KDevelop
Kate
and many many others!
2006 Feb 07
0
oracle scaffolding
I just got Oracle connectivity working on my Mac rails installation, and
I started with a simple migration to test.
def self.up
create_table "computers", :force => true do |t|
t.column "description", :string
t.column "brand", :string
end
end
def self.down
drop_table "computers"
end
end
This seemed to work, but when I