Displaying 6 results from an estimated 6 matches for "hoodwink".
Did you mean:
hoodwinkd
2008 Oct 08
9
Plugins and the test environment
Hi guys. I''m writing a plugin for use in the test environment.
However, when I run ``rake test'''' or ``rake spec'''', RAILS_ENV is set
to "development" when my plugin''s init.rb is run.
How do you configure a plugin to load require a file in the test
environment?
Thanks,
Nick
--~--~---------~--~----~------------~-------~--~----~
You
2006 Feb 13
0
+ Helpers#URL
Okay, a new method: Helpers#URL. Here''s the rundown.
== Helpers#URL ==
Builds a complete URL to a controller route or a path, returning a URI
object. Basically, an absolute URL which can replace the ugly `self /
R(...)` in your controllers.
Assuming the Hoodwink.d app is mounted at
http://localhost:3301/hoodwinkd/, in a controller or view you''ll see the
following results:
URL()
#=> #<URI::HTTP URL:http://localhost:3301/hoodwinkd/>
self.URL
#=> #<URI::HTTP URL:http://localhost:3301/hoodwinkd/>
URL(Static, '&...
2006 Jul 15
6
Hello
Hello, just checking into the amazing world famous 4k web-framework mailing
list esquire!
-El
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/camping-list/attachments/20060715/f1f487ee/attachment.html
2006 Feb 13
11
ROR code syntax highlighting on blog?
I am interested in putting the cool syntax highlighting for ROR code. What''s the best way to do that? Is it using textilize or another formatting language? Or do I need special stylesheets?
Any assistance is appreciated.
Thanks
Frank
---------------------------------
Yahoo! Mail
Use Photomail to share photos without annoying attachments.
-------------- next part
2007 May 04
22
CampingConf?
Campers --
In a few weeks there will be a bunch of people in Portland, OR, for a
conference. A long time ago some campers mentioned that might be a
good time for us to get together and hold a mini CampingConf for a few
hours. Is anyone interested? Does anyone want to organize it?
I''m thinking Wednesday night, May 16.
We could possibly get a spot at FreeGeek (not likely since they are
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