search for: hobos

Displaying 20 results from an estimated 21 matches for "hobos".

Did you mean: hobbs
2006 Apr 03
4
How to fake composite primary keys?
I know ActiveRecord doesn''t support composite primary keys, but I need to use one, and I need it ASAP. I don''t need any composite foreign keys, luckily; what I have is a table that stores old versions of rows in another table, so the composite key is an id + date stamp. Would someone tell me a hack I can use to support this? -- View this message in context:
2011 Sep 13
3
Accessing Rails helper method with_output_buffer
Hi all, I cannot figure out how to correctly use the with_output_buffer helper method (located in ActionView::Helpers::CaptureHelper) inside a custom FormBuilder. Below follows a simplified example. I''m trying to achieve the following behavior in an ERB as suggested in the form_for helper docs in the Rails source: ========== <%= form_for @object, :builder => MyFormBuilder do
2008 Feb 01
2
Facebooker interfering with existing application
Hi! I have an existing application, basically a very simple Hobo app. It works... When I install the Facebooker plugin and create the facebooker.yml file (with valid or fake content, doesn''t matter), the original app starts behaving strangely. The controller and view logic keeps working, but several static files stop being served from http://localhost:3000/javascripts and start being
2011 Aug 23
2
Where is WillPaginate::Finders ???
Hi All! It''s been a while since I had to ask for help, but I''m back! I''ve finished beta testing my big app and started the transition to production. Everything went fine and the production version was working till I was asked to add another model :-( (Almost a year of beta testing and they only come up with it after moving to production :-D ) I successfully
2009 Aug 29
2
Users, Roles and Permissions
Hello, I''m currently working on a text-based roleplay browser game, and i''m trying to figure out what the best approach would be in order to create a system that allows me to assign roles to a user, and permissions based upon the role a user has. I''ve been thinking about creating a model User, which has_many :roles, and with the Role model which has_many :permissions.
2007 Aug 26
4
howto regressions on environment.rb in Rails projects
How would one write a spec on environment.rb in a rails app? I was requiring a gem in environment.rb, but received a "MissingSourceError". Generally, ruby raises a LoadError when it can''t find a gem, but rails overrides this to raise a MissingSourceError (since rails is expecting a required file to be in lib/...). How would I write a spec to override this behavior,
2009 Dec 07
1
problem starting rails (hobo) app with passenger
Dear All! I''ve set up my apache, passenger and configs, the passenger works, but the app can''t be started. the erros are the following These are the possible causes: * There may be a syntax error in the application''s code. Please check for such errors and fix them. * A required library may not installed. Please install all libraries that this
2009 Jun 09
0
Rails Hosting for Newbies
Hello all. This is probably an unusual first-time post but here goes. First of all, I''m new to the worlds of both Ruby and Rails, so I don''t have a lot to give in the way of Ruby or Rails. . . yet. However, I am a long time coder and I hope to be able to contribute before long. In the meantime, I do have something to share with you today. It is a testimonial about something I
2008 Apr 02
18
Setting up PuppetShow - Puppet's Web Interface
Hello puppeters; I want to set/test the PuppetShow "Puppet''s Web Interface" with Ruby on Rails (ROR). If somebody has setup such show, please share your experiece with EXAMPLES...I''m not the programmer.so please share your STEPS....I have setup the ROR environment, currently learning Rails with different frameworks....HOBO (http://hobocentral.net/) is great for starter
2009 Nov 13
3
Encoding::UTF_8 missing?
I''ve just done a fresh reinstall of OS X Snow Leopard on my mac, and I''m having all kinds of problems with Rails, but the latest problem has me stumped. Whenever I run rake db:seed to populate my database I hit the following error: ** Invoke db:seed (first_time) ** Invoke environment (first_time) ** Execute environment ** Execute db:seed rake aborted! uninitialized constant
2018 Jun 07
2
dovecot-pigeonhole Missing sieve_imapsieve Plugin?
Hi Folks, I am having a problem configuring imapsieve via dovecot-pidgeonhole on CentOS7. After following the docs here: https://wiki2.dovecot.org/Pigeonhole/Sieve/Plugins/IMAPSieve I get: dovecot[22026]: managesieve: Fatal: Plugin 'sieve_imapsieve' not found from directory /usr/lib64/dovecot/sieve dovecot[22026]: doveconf: Error: managesieve-login: dump-capability process returned 89
2013 May 17
5
Active Admin with Ajax call
Hello everyone. I''m begining with Ruby on Rails, and i''m facing some trouble with "ActiveAdmin with ajax." Here''s the situation: It''s a Kennel''s web site, so, while i''m creating a new dog, i have one select/options for the dog''s father, dog''s mother, and dog''s race. After select the dog''s
2007 Sep 29
2
Typo3 5.0 Framework
Hi guys, for about one and half a year I am involved in RoR Development. I like the framework very much! But more and more I have my doubts, that this framework will succeed, I think Ruby on Rails succeed only, if some powers from community will be concentrated on a target-oriented development of the Framework. Since the approach of a pragmatic way of programming isn''t new anymore, more
2007 Jun 21
0
Testing a Rails plugin
Hi OK it looks like I''m a convert to BDD :-) Well in principle at least - let''s see how it turns out. I''ve just set up a test environment for the Hobo plugin according to this guide: http://www.pluginaweek.org/2006/11/24/plugin-tip-of-the-week- testing-your-plugins-the-right-way/ And then adapted the setup to work with RSpec In the plugin I now have: /spec
2010 May 18
0
Pat Shaughnessy's Paperclit problem
I''m using Pat Shaughnessy''s paperclip http://github.com/patshaughnessy/paperclip cause I need to store pictures in database. When I set :storage => :database in the avatar I get an error when starting server: C:/Ruby/lib/ruby/gems/1.8/gems/paperclip-2.2.6/lib/Paperclip.rb:301:in `[]'': Symbol as array index (TypeError) Had anyone this problem before? My system: Ruby
2018 Jun 07
0
dovecot-pigeonhole Missing sieve_imapsieve Plugin?
On June 7, 2018 6:47:54 PM GMT+02:00, Will Foster <sadsfae at funcamp.net> wrote: >Hi Folks, > >I am having a problem configuring imapsieve via dovecot-pidgeonhole on >CentOS7. > >After following the docs here: > >https://wiki2.dovecot.org/Pigeonhole/Sieve/Plugins/IMAPSieve > >I get: > >dovecot[22026]: managesieve: Fatal: Plugin 'sieve_imapsieve'
2008 May 20
2
rspec fails at first run -- no such file to load -- spec/rails
Hi, I newly downloaded rspec, rspec_on_rails and ran the command ruby script/generate rspec from the instructions http://rspec.info/documentation/rails/install.html I then created the directories in spec: controllers, fixtures, helpers, models, views I then created the file spec/models/user_spec.rb as a spec for my model User. (Is the convention to name the model''s spec
2010 Dec 08
1
Help on install act_as_ferret on windows XP
...0.2.10) database_cleaner (0.5.2) datanoise-actionwebservice (2.3.2) diff-lcs (1.1.2) erubis (2.6.6) factory_girl (1.3.2) ferret (0.11.5 mswin32) ffi (0.6.3 x86-mingw32) friendly_id (3.0.6) gemcutter (0.6.1) geokit (1.5.0) gherkin (2.1.5 i386-mingw32) heroku (1.9.13) hobo (1.0.1) hobofields (1.0.1) hobosupport (1.0.1) hoe (2.6.1) i18n (0.4.2) json_pure (1.4.6, 1.4.5) launchy (0.3.7) mail (2.2.9) mime-types (1.16) mysql (2.8.1 x86-mingw32) nokogiri (1.4.3.1 x86-mingw32) pg (0.9.0 x86-mingw32) polyglot (0.3.1) rack (1.2.1, 1.1.0) rack-mount (0.6.13) rack-test (0.5.4) rails (2.3.8, 1.2.3) railties (3....
2006 Nov 28
8
how to update index from a script
Hello all, I''m using AAF right now to index my ~3million db records. However, any additions to these records are added to the database through an external script so the aaf activerecord hooks will not catch any updates. Since new records are only added rarely, I figured I could just add the new records manually in ferret from some type of script. I''ve been looking at the
2003 May 15
9
big file server
Hi I plan to set up a big file server, something like motherboard with 4 ide ports and an additional 4 ide daughter card, a PIV proc and 512 or 1024 MB ram, a 100 or 1000 MB NIC, with 6 or 7 200 GB ide HDDs in a sigle box. I don't need lightning performance, just disk space. Of course this would be served by some linux os and samba questions (relative to samba configuration and behaviour) :