similar to: Troubleshooting a camping trip?

Displaying 20 results from an estimated 2000 matches similar to: "Troubleshooting a camping trip?"

2008 May 10
2
Camping-Omnibus Doesn''t Work With Ruby v1.8.6
I''ve noticed that the copy of Mongrel installed by the camping-omnibus gem doesn''t work with Ruby 1.8.6. Or to be more specific, cgi_multipart_eof_fix (which Mongrel is dependent upon) doesn''t work: > $ sudo gem install mongrel --source http://code.whytheluckystiff.net > > ERROR: Error installing mongrel: > cgi_multipart_eof_fix requires Ruby version
2007 Mar 28
1
Pimpin'' a patch: moving the bin/camping logic to classes
Hello, Zimbatm suggested the best way to push a patch into camping was to take my case to the people. So here it is. If you want to jump straight to the patch: http://code.whytheluckystiff.net/camping/ticket/117 Goal: Move the logic in the camping command line launcher into several classes Why? In the next version of parasite (http://parasite.rubyforge.org) I''d like to take over
2006 Oct 03
4
! camping 1.5 + markaby 0.5
Not too different from their corresponding last releases, but documentation has been filled in for both. To upgrade: gem install camping --source code.whytheluckystiff.net And, here is a complete changelog: == Camping 1.5 * Camping::Apps stores an array of classes for all loaded apps. * bin/camping can be given a directory. Like: <tt>camping examples/</tt> * Console mode -- thank
2006 Jul 12
1
+ camping 1.4.123
And now: gem install camping --source code.whytheluckystiff.net I hope this will be the last development release before 1.5. * ActiveRecord no longer required or installed. * If you refer to Models::Base, however, ActiveRecord will be loaded with autoload. (see lib/camping/db.rb) * new Camping::FastCGI.serve which will serve a whole directory of apps (see TheCampingServer[1]) *
2006 Jul 06
0
+ camping 1.4.120
Okay, let''s see. gem install camping --source code.whytheluckystiff.net A bunch of great stuff. * Camping::Apps stores constants for all loaded apps. * bin/camping can be given a directory. [1] Like: camping examples/ * Console mode -- thank zimbatm. Use: camping -C yourapp.rb * Call controllers with Camping.method_missing. Tepee.get(:Index) #=> (Response)
2006 Jul 18
3
+ camping 1.4.138
Just up: gem install camping --source code.whytheluckystiff.net The changes: * Both bin/camping and Camping::FastCGI.serve now act according to the Camping Server specification.[1] * Docs are complete. _why [1] https://code.whytheluckystiff.net/camping/wiki/TheCampingServer
2007 Oct 08
0
Camping-list Digest, Vol 18, Issue 1
UNSUBSCRIBE On Oct 5, 2007, at 1:27 PM, camping-list-request at rubyforge.org wrote: > Send Camping-list mailing list submissions to > camping-list at rubyforge.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://rubyforge.org/mailman/listinfo/camping-list > or, via email, send a message with subject or body ''help'' to >
2006 May 16
0
! camping 1.4.1.96
I''m just about ready to release 1.4.2. Here''s the pre-release: gem install camping --source code.whytheluckystiff.net The biggest recent change is that the Camping commandline tool now allows mounting of several apps. I''ve eliminated examples/serve and am encouraging use of the camping tool. Instead, use: camping examples/blog/blog.rb examples/tepee/tepee.rb
2006 May 18
0
+ Camping::FastCGI
Getting Camping to work with FastCGI is a little clunky, since FastCGI doesn''t really understand mounting apps and sometimes the environment vars are a little whack. To keep the postambles easy to read, I''ve moved the handy stuff into lib/camping/fastcgi.rb. == Mounting a Single App Assuming: Camping.goes :Blog ... this goes in your postamble ... require
2008 May 23
0
Camping on Dreamhost
I spent a few hours tonight getting Camping working with FastCGI on Dreamhost. I pieced together information from a blog post, an email thread, and the SiteFive page on the Camping wiki, and posted my working results in two places: Camping wiki - http://code.whytheluckystiff.net/camping/wiki/CampingOnDreamhost Dreamhost wiki - http://wiki.dreamhost.com/Camping Hopefully this helps somebody! --
2006 Apr 11
0
! camping 1.4
Okay, Camping 1.4 is out. gem install camping --source code.whytheluckystiff.net The only recent change is that the request body gets store in the @in variable as an open stream. It''s also okay to pass an IO object out of Camping. Lastly, Camping + Mongrel (SVN) now supports the X-Sendfile header. [1] Very swift and cool. _why [1]
2007 Jan 06
0
! camping 1.5.180
Just a few minor changes released before I add gem support. * R() now accepts a Hash in its arguments which can be used to build a query string. R(Topic, @topic.id, :page => 24) #=> "/topic/14?page=24" * Base#to_a, discussed here.[1] Can be used to forward requests. Both the camping and camping-omnibus gems are fresh. gem install camping-omnibus --source
2006 May 22
0
+ camping 1.4.103 and markaby 0.4.55
Consider this Camping 1.5 pre-release. gem install camping --source code.whytheluckystiff.net Look for: * The new Markaby features. <http://redhanded.hobix.com/inspect/lessMethod_missingInMarkaby.html> <http://redhanded.hobix.com/inspect/markabySMagicPermeationBranch.html> * The Camping::FastCGI class. * R(C, ...) properly escapes wacky arguments. _why
2006 Oct 31
0
! camping-omnibus 1.5.176
gem install camping-omnibus --source code.whytheluckystiff.net Considering the number of optional dependencies now in Camping, I''ve put together an eigengem which will load all of the recommended libraries that most devoted campers will want: ActiveRecord, Mongrel, SQLite3, RedCloth and the acts_as_versioned gem. (Those last two are used in the examples.) Stuff like mosquito and
2006 Mar 07
0
! camping 1.3.73
In gems or SVN now: gem install camping --source code.whytheluckystiff.net Primarily: * Sessioning was broken, reported by Ken Allen. * Removed lib/camping/mongrel.rb, since Mongrel does all that now. * More docs. * Updated to Markaby 0.3.29, which is less of a memory hog. _why
2006 Aug 13
3
+ migrations in camping
Camping apps are supposed to be little independent apps, often contained in a single file, which create the database tables and manage them without hassle. These days it''s common to see in a Camping app: module Tepee::Models def self.schema(&block) @@schema = block if block_given? @@schema end end Tepee::Models.schema do create_table :tepee_pages,
2006 Feb 21
6
+ camping/session
Camping now comes with a sessioning class, checked in tonight. To get sessions working for your application: 1. require ''camping/session'' 2. include Camping::Session in your application''s toplevel module. 3. In your application''s create method, add a call to Camping::Models::Schema.create_schema 4. Throughout your application, use the @state
2006 Apr 19
0
! camping 1.4.1
Okay: gem install camping --source code.whytheluckystiff.net Fixes a problem with query parsing. Specifically, the `user[login]=_why&user[email]=why at ruby-lang.org'' syntax was broken since ActiveSupport''s hash indifferent overrides update() and merge(). _why
2007 Nov 22
2
How many CRLFs between header and body?
Just ran into a problem[1]. It seems to have been introduced by changeset 224 [2], a fix for ticket 126 [3]. The root is the number of CRLFs Camping puts between the headers and the body of the response. This has changed at least 3 times; right now we''re back to 1. (ie. every header ends in a CRLF, and then there''s the body) The HTTP RFC[4], the CGI spec[5] and the FastCGI
2007 Sep 23
12
Next camping release
Dear camping users, having been contacted by Julian Tarkhanov, I am willing to prepare the next camping release. _why has given me his friendly approval, with the reserve that camping.rb should be lower than 4k. He also told me that he wanted to remove the ActiveSupport and Markaby dependencies. I am writing here to get the users input so that I don''t do any mistake. So far, my plans